chore(deps): update npm development dependencies #1525
Workflow file for this run
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: Pull Request π₯ | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
paths-ignore: | |
- '**/*.md' | |
merge_group: | |
jobs: | |
compose-comment: | |
name: Compose PR comment βοΈ | |
if: ${{ always() && !cancelled() }} | |
uses: ./.github/workflows/__job_messages.yml | |
with: | |
commit: ${{ github.event.pull_request.head.sha }} | |
commenting_workflow_run_id: ${{ github.run_id }} | |
in_progress: true | |
push-comment: | |
name: Push comment to PR πΌ | |
if: ${{ always() && !cancelled() && needs.compose-comment.result == 'success' }} | |
runs-on: ubuntu-latest | |
needs: | |
- compose-comment | |
steps: | |
- name: Comment Pull Request | |
uses: thollander/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }} | |
message: ${{ needs.compose-comment.outputs.msg }} | |
comment_tag: ${{ needs.compose-comment.outputs.marker }} | |
project: | |
name: Add to project board π | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: alex-page/[email protected] | |
with: | |
project: Ongoing development | |
column: In progress | |
repo-token: ${{ secrets.JF_BOT_TOKEN }} | |
label: | |
name: Labeling π·οΈ | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label depending on modified files | |
uses: actions/[email protected] | |
with: | |
sync-labels: true | |
repo-token: ${{ secrets.JF_BOT_TOKEN }} | |
build: | |
name: Build ποΈ | |
if: ${{ always() && !cancelled() }} | |
uses: ./.github/workflows/__package.yml | |
# Start build after the comment is created | |
needs: | |
- push-comment | |
# Needed for attestation publication | |
permissions: | |
id-token: write | |
attestations: write | |
with: | |
commit: ${{ github.event.pull_request.head.sha }} | |
quality_checks: | |
name: Quality checks ππ§ͺ | |
if: ${{ always() && !cancelled() }} | |
uses: ./.github/workflows/__quality_checks.yml | |
permissions: {} | |
with: | |
commit: ${{ github.event.pull_request.head.sha }} | |
codeql: | |
name: GitHub CodeQL π¬ | |
if: ${{ always() && !cancelled() }} | |
uses: ./.github/workflows/__codeql.yml | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
with: | |
commit: ${{ github.event.pull_request.head.sha }} | |
deploy: | |
name: Deploy π | |
uses: ./.github/workflows/__deploy.yml | |
if: ${{ always() && !cancelled() && needs.build.result == 'success' }} | |
needs: | |
- build | |
permissions: | |
contents: read | |
deployments: write | |
secrets: inherit | |
with: | |
# If the PR is from the master branch of a fork, append the fork's name to the branch name | |
branch: ${{ github.event.pull_request.head.repo.full_name != github.repository && github.event.pull_request.head.ref == 'master' && format('{0}/{1}', github.event.pull_request.head.repo.full_name, github.event.pull_request.head.ref) || github.event.pull_request.head.ref }} | |
comment: true | |
pr_number: ${{ github.event.pull_request.number }} | |
commit: ${{ github.event.pull_request.head.sha }} |