Skip to content

Commit

Permalink
run tool from branch instead of develop
Browse files Browse the repository at this point in the history
allow fixing bugs as we encounter them
  • Loading branch information
josh-heyer committed Jan 16, 2025
1 parent 5613c22 commit c19814d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generate-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Checkout relgen tool
uses: actions/checkout@v4
with:
ref: develop
ref: ${{ github.event.pull_request.head.ref }}
path: tools
sparse-checkout: |
tools
Expand All @@ -36,8 +36,8 @@ jobs:
- name: regenerate relnotes
run: |
shopt -s globstar
for rnmetapath in ./content/**/src/meta.yml; do
./tools/tools/automation/generators/relgen/relgen.js -p ${rnmetapath%/src/meta.yml}
for rnmetapath in ./**/src/meta.yml; do
./tools/automation/generators/relgen/relgen.js -p ${rnmetapath%/src/meta.yml}
done
- name: check for modified files
Expand Down

0 comments on commit c19814d

Please sign in to comment.