fix: calling a workflow from another doesn't work this way #7
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: Update OFAC list | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Daily at 9AM | ||
- cron: "0 9 * * *" | ||
jobs: | ||
update-ofac-list: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
output1: ${{ steps.step1.outputs.test }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20.x" | ||
- run: npm install | ||
- name: Check if new addresses were added via the OFAC xss feed | ||
run: npm run update-ofac-list | ||
- name: Sets a flag if the list was changed | ||
id: diff_flag | ||
run: | | ||
git diff --exit-code ofac.sanctions.json | ||
echo "GIT_EXIT_CODE=$?" >> $GITHUB_OUTPUT | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "auto: Add new OFAC addresses" | ||
publish-npm-package: | ||
needs: update-ofac-list | ||
if: ${{ steps.diff_flag.outputs.GIT_EXIT_CODE == 1 }} | ||
uses: .github/workflows/publish.yml@main | ||