You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
643 B
21 lines
643 B
name: Backport Bot |
|
|
|
on: |
|
issues: |
|
types: [labeled] |
|
pull_request: |
|
types: [labeled] |
|
push: |
|
branches: |
|
- '*.x' |
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v3 |
|
- uses: actions/setup-java@v3 |
|
with: |
|
distribution: 'temurin' |
|
java-version: '17' |
|
- run: wget https://github.com/spring-io/backport-bot/releases/download/latest/backport-bot-0.0.1-SNAPSHOT.jar |
|
- 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) }}'
|
|
|