We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5472b commit 187d79dCopy full SHA for 187d79d
.github/workflows/preview_release_notes.yml
@@ -29,8 +29,10 @@ jobs:
29
id: generate_release_notes
30
run: python -m scripts.release.release_notes -s $INITIAL_COMMIT_SHA -v $INITIAL_VERSION -o release_notes_tmp.md
31
env:
32
- INITIAL_COMMIT_SHA: ${{ vars.RELEASE_INITIAL_COMMIT_SHA }}
33
- INITIAL_VERSION: ${{ vars.RELEASE_INITIAL_VERSION }}
+ # We can not use environments set via GitHub UI because they will
+ # not be available in the pull requests running from forks.
34
+ INITIAL_COMMIT_SHA: 9ed5f98fc70c5b3442f633d2393265fb8a2aba0c
35
+ INITIAL_VERSION: 1.3.0
36
- name: Add disclaimer to release notes preview
37
run: |
38
echo -e "_:warning: (this preview might not be accurate if the PR is not rebased on current master branch)_\n" > release_notes_preview.md
0 commit comments