Only run Target GitHub Action on PR creation. #126
Workflow file for this run
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
name: Target | |
# === Triggers === | |
'on': | |
pull_request: | |
types: | |
- opened | |
- reopened | |
# === JOBS === | |
jobs: | |
# === Target PR === | |
targetpr: | |
name: Target PR | |
runs-on: ubuntu-20.04 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JIRA_USERNAME: ${{ secrets.JIRA_EMAIL }} | |
JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
timeout-minutes: 5 | |
steps: | |
- # === Checkout code === | |
name: Checkout code | |
uses: actions/checkout@v2 | |
- # === Install Go === | |
name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.x' | |
- # === Install State Tool === | |
name: Install State Tool | |
uses: ActiveState/setup-state-tool@v1 | |
- # === Preprocess === | |
name: Preprocess | |
shell: bash | |
run: state run preprocess -v | |
- # === Set Target PR & FixVersion === | |
name: Set Target PR and FixVersion | |
shell: bash | |
run: go run scripts/ci/target-version-pr/main.go ${{ github.event.pull_request.number }} |