chore(npm deps-dev): Bump the ic-identity group with 2 updates #765
Workflow file for this run
This file contains hidden or 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: 'PR' | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| - labeled | |
| permissions: | |
| contents: read | |
| jobs: | |
| pr: | |
| name: 'pr' | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| env: | |
| TITLE: ${{ github.event.pull_request.title }} | |
| steps: | |
| - name: Conventional commits | |
| run: | | |
| if [[ "$TITLE" =~ ^(feat|fix|chore|build|ci|docs|style|refactor|perf|test)( ?\([-a-zA-Z0-9, ]+\))\!?\: ]]; then | |
| echo "PR Title passes" | |
| else | |
| echo "PR Title does not match conventions: $TITLE" | |
| echo " verb(scope): description" | |
| echo "or for a breaking change:" | |
| echo " verb(scope)!: description" | |
| echo "For scope, please use the affected canister name(s), rust crate name(s) or 'ci' for infrastructure changes." | |
| exit 1 | |
| fi | |
| pr-pass: | |
| name: 'pr-pass' | |
| needs: ["pr"] | |
| if: ${{ always() }} | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Check that all required steps have succeeded | |
| uses: ./.github/actions/needs_success | |
| with: | |
| needs: '${{ toJson(needs) }}' |