We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 106f849 commit acc2d96Copy full SHA for acc2d96
.github/workflows/changelog.yml
@@ -0,0 +1,17 @@
1
+name: Changelog
2
+on: [pull_request]
3
+
4
+jobs:
5
+ fragments:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - name: Fetch Go version from .go-version
10
+ run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV
11
+ - uses: actions/setup-go@v3
12
+ with:
13
+ go-version: ${{ env.GO_VERSION }}
14
+ - name: check pr-has-fragment
15
+ run: |
16
+ GOBIN=$PWD/bin go install github.com/elastic/elastic-agent-changelog-tool@latest
17
+ ./bin/elastic-agent-changelog-tool pr-has-fragment --repo ${{ github.event.repository.name }} ${{github.event.number}}
0 commit comments