docs: add howto guides for switching from the charm plugin #4325
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cla-check | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
cla-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check if CLA signed | |
uses: canonical/has-signed-canonical-cla@v1 | |
# This prevents the action from running on a merge group, where it fails. | |
if: ${{ github.event_name != 'merge_group' }} | |
- name: No-Op # This exists so the job succeeds if the above step doesn't run. | |
run: 'true' | |
if: ${{ github.event_name == 'merge_group' }} |