chore(deps): bump actions/upload-artifact from 4.3.3 to 4.3.4 #16
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: Block PRs with New Fragments | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
checkForNewFragments: | |
name: Check for new fragments | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- name: Check if there are new fragments | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
id: new-fragments-boolean | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
const { getAddedFragments } = require('./.github/workflows/scripts/check_for_new_fragments.js'); | |
return getAddedFragments({github, context, core}); | |
- name: Add Comment to PR if new fragments have been added | |
if: ${{ steps.new-fragments-boolean.outputs.result > 0 }} | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
env: | |
CURRENT_BRANCH: ${{ github.head_ref }} | |
CURRENT_REPO: ${{ github.repository }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { addComment } = require('./.github/workflows/scripts/check_for_new_fragments.js'); | |
addComment({github, context}); | |
- name: Fail if new fragments have been added | |
if: ${{ steps.new-fragments-boolean.outputs.result > 0 }} | |
run: exit 1 | |