├── CHANGES.md └── .github └── workflows └── populate-changelog-pr-number.yml /CHANGES.md: -------------------------------------------------------------------------------- 1 | - New suggestion comes from the composite action (#3, @Leonidas-from-XIV) 2 | - This one should just be a suggestion (#2, @Leonidas-from-XIV) 3 | - New entry added by the PR (#1, @Leonidas-from-XIV) 4 | - Initial entry into the changelog 5 | -------------------------------------------------------------------------------- /.github/workflows/populate-changelog-pr-number.yml: -------------------------------------------------------------------------------- 1 | name: Populate GitHub PR number in Changelog 2 | on: [pull_request_target] 3 | jobs: 4 | Populate-Changelog-Action: 5 | runs-on: ubuntu-20.04 6 | steps: 7 | - name: Update PR number 8 | uses: tarides/pr-number-action@main 9 | --------------------------------------------------------------------------------