chore(deps): update npm development dependencies #7813
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: Automation 🤖 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**/*.md" | |
pull_request_target: | |
jobs: | |
compose-comment: | |
name: Compose PR comment | |
if: ${{ always() && !cancelled() && github.event_name == 'pull_request_target' }} | |
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() && github.event_name == 'pull_request_target' && needs.compose-comment.result == 'success' }} | |
runs-on: ubuntu-latest | |
needs: | |
- compose-comment | |
steps: | |
- name: Create comment | |
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: Project board 📊 | |
if: ${{ github.event_name == 'pull_request_target' }} | |
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() && !cancelled() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label PR depending on modified files | |
uses: actions/[email protected] | |
if: ${{ github.event_name == 'pull_request_target' }} | |
continue-on-error: true | |
with: | |
repo-token: "${{ secrets.JF_BOT_TOKEN }}" | |
- name: Check all PRs for merge conflicts ⛔ | |
uses: eps1lon/[email protected] | |
with: | |
dirtyLabel: "merge conflict" | |
repoToken: ${{ secrets.JF_BOT_TOKEN }} |