SNOW-1778151: ERROR:snowflake.connector.result_batch:Failed to fetch the large result set batch 01b80e2e-0000-e354-0001-2992007d2476_0%2Fmain%2Fdata_0_0_0 for the 3 th time, backing off for 4s for the reason: '000403: 403: HTTP 403: Forbidden' #435
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: Jira closure | |
on: | |
issues: | |
types: [closed, deleted] | |
jobs: | |
close-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
repository: snowflakedb/gh-actions | |
ref: jira_v1 | |
token: ${{ secrets.SNOWFLAKE_GITHUB_TOKEN }} # stored in GitHub secrets | |
path: . | |
- name: Jira login | |
uses: atlassian/gajira-login@master | |
env: | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
- name: Extract issue from title | |
id: extract | |
env: | |
TITLE: "${{ github.event.issue.title }}" | |
run: | | |
jira=$(echo -n $TITLE | awk '{print $1}' | sed -e 's/://') | |
echo ::set-output name=jira::$jira | |
- name: Close issue | |
uses: ./jira/gajira-close | |
if: startsWith(steps.extract.outputs.jira, 'SNOW-') | |
with: | |
issue: "${{ steps.extract.outputs.jira }}" |