Added 30 sec wait time after config push #2479
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: Ensure Jira issue is linked | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
check_for_issue_key: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout actions repo | |
uses: actions/checkout@v3 | |
with: | |
repository: Telecominfraproject/.github | |
path: github | |
- name: Run JIRA check | |
uses: ./github/composite-actions/enforce-jira-issue-key | |
with: | |
jira_base_url: ${{ secrets.TIP_JIRA_URL }} | |
jira_user_email: ${{ secrets.TIP_JIRA_USER_EMAIL }} | |
jira_api_token: ${{ secrets.TIP_JIRA_API_TOKEN }} |