Feature: Secrets are not cloned properly when using the "Clone Workflow" feature from the application group page. #443
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: Issue Created | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
extract-issue-body: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Check if pager-duty template is used | |
if: ${{ contains(github.event.issue.labels.*.name, 'pager-duty') && contains(github.event.issue.labels.*.name, 'bug') }} | |
run: | | |
echo "Issue was created using pager-duty template" | |
python3 scripts/utilities/github_pagerduty_issue_score_calculation.py | |
env: | |
ISSUE_NUMBER: ${{ github.event.issue.number }} | |
ISSUE_BODY: ${{ github.event.issue.body }} | |
GITHUB_TOKEN: ${{ github.token }} | |
PAGERDUTY_SCORE_THRESHOLD: ${{ vars.PAGERDUTY_SCORE_THRESHOLD }} |