PROD-1000 Increase default boot disk from 10gb to 20gb for GCP #2179
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
# A github action to validate the name of a pull request contains a Jira tag: | |
name: Validate PR name | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
jobs: | |
validate_pr_name: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: get-jira-id | |
uses: ./.github/library/get_jira_id | |
- run: echo Jira ID is ${{ steps.get-jira-id.outputs.jira-id }} |