Bump mypy from 0.982 to 1.13.0 #3877
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: Add PR link to Related Jira Issue | |
on: | |
pull_request: | |
types: [ opened, edited ] | |
permissions: | |
pull-requests: read | |
jobs: | |
add_pr_link_to_related_jira_issue: | |
runs-on: ubuntu-latest | |
if: github.repository == 'demisto/demisto-sdk' && github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Setup Poetry | |
uses: Gr1N/setup-poetry@v9 | |
- uses: actions/cache@v4 | |
with: | |
path: .venv | |
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | |
- name: Install Python Dependencies | |
run: | | |
poetry install | |
- name: Run Linking pr to Jira Script | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
PR_LINK: ${{ github.event.pull_request.html_url }} | |
PR_BODY: ${{ github.event.pull_request.body }} | |
USERNAME: ${{ secrets.GOLD_NG_LINK_PR_TO_JIRA_ISSUE_USER }} | |
PASSWORD: ${{ secrets.GOLD_NG_LINK_PR_TO_JIRA_ISSUE_PASSWORD }} | |
INSTANCE_URL: ${{ secrets.GOLD_NG_ENGINE_URL }} | |
run: | | |
echo "Checking for related Jira issues to PR: $PR_NUMBER" | |
cd Utils/github_workflow_scripts/jira_integration_scripts | |
echo --pr_num $PR_NUMBER --pr_link $PR_LINK --pr_title $PR_TITLE --pr_body $PR_BODY --no-is_merged | |
poetry run python ./link_pr_to_jira_issue.py --url "$INSTANCE_URL" --pr_num "$PR_NUMBER" --pr_link "$PR_LINK" --pr_title "$PR_TITLE" --pr_body "$PR_BODY" --no-is_merged --username $USERNAME --password $PASSWORD |