fix: update attribution file #22
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: Check attributions | ||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
types: | ||
- opened | ||
- synchronize | ||
jobs: | ||
prepare: | ||
name: Prepare dependencies | ||
runs-on: ubuntu-latest | ||
outputs: | ||
COMMIT_SHA: ${{ steps.commit-sha.outputs.COMMIT_SHA }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- name: Install Yarn dependencies | ||
run: yarn --immutable | ||
- name: Get commit SHA | ||
id: commit-sha | ||
run: echo "COMMIT_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | ||
generate-and-validate-attributions: | ||
name: Generate and Validate Attributions | ||
runs-on: ubuntu-latest | ||
needs: | ||
- prepare | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PR_NUMBER: ${{ github.event.issue.number }} | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- name: Install dependencies from cache | ||
run: yarn --immutable --immutable-cache | ||
- name: Generate Atributions | ||
run: yarn generate:attributions | ||
- name: Check whether there are attributions changes | ||
run: | | ||
if git diff --exit-code -- attribution.txt | ||
then | ||
echo "No attributions changes. Pipeline succeeded." | ||
else | ||
echo "Attributions have changed. Failing pipeline." | ||
exit 1 | ||
fi |