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 df45c80 commit e279856Copy full SHA for e279856
.github/workflows/backport-bot.yml
@@ -0,0 +1,21 @@
1
+name: Backport Bot
2
+
3
+on:
4
+ issues:
5
+ types: [labeled]
6
+ pull_request:
7
8
+ push:
9
+ branches:
10
+ - '*.x'
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-java@v3
17
+ with:
18
+ distribution: 'temurin'
19
+ java-version: '17'
20
+ - run: wget https://github.com/spring-io/backport-bot/releases/download/latest/backport-bot-0.0.1-SNAPSHOT.jar
21
+ - run: java -jar backport-bot-0.0.1-SNAPSHOT.jar --github.accessToken="${{ secrets.GITHUB_TOKEN }}" --github.event_name "${{ github.event_name }}" --github.event '${{ toJSON(github.event) }}'
0 commit comments