-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HCE-721 Enable Auto Dependabot Changelogs (#150)
* enable dependabot changelogs * changelog * newline
- Loading branch information
1 parent
fdd8549
commit 7c4369d
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:improvement | ||
Enable automatic changelog creation for dependabot PRs. | ||
``` |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Auto generate a changelog entry if the PR was opened by dependabot. | ||
--- | ||
name: Create Changelog for Dependabot | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
create_changelog: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.pull_request.user.login == 'dependabot'}} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
token: ${{ secrets.HCP_SDK_PIPELINE_TOKEN }} | ||
|
||
- name: Configure git | ||
env: | ||
TOKEN: ${{ secrets.HCP_SDK_PIPELINE_TOKEN }} | ||
run: | | ||
git config --global advice.detachedHead false | ||
git config --global url."https://${TOKEN}:[email protected]/".insteadOf "https://github.com/" | ||
git config user.name "github-actions" | ||
git config user.email "[email protected]" | ||
- name: Create Changelog | ||
run: | | ||
echo "This is a Dependabot PR. Creating changelog entry on its behalf." | ||
touch .changelog/${{ github.event.pull_request.number }}.txt | ||
printf '```release-note:improvement%s\n' >> .changelog/${{ github.event.pull_request.number }}.txt | ||
printf '${{ github.event.pull_request.title }}%s\n' >> .changelog/${{ github.event.pull_request.number }}.txt | ||
printf '```%s\n' >> .changelog/${{ github.event.pull_request.number }}.txt | ||
git add . | ||
git commit -m "Added changelog entry" | ||
git push |