Skip to content

SNOW-1622978: GHSA-8hc4-vh64-cxmj / CVE-2024-39338 / SNYK-JS-AXIOS-7361793 in axios >= 1.3.2 <= 1.7.3 #191

SNOW-1622978: GHSA-8hc4-vh64-cxmj / CVE-2024-39338 / SNYK-JS-AXIOS-7361793 in axios >= 1.3.2 <= 1.7.3

SNOW-1622978: GHSA-8hc4-vh64-cxmj / CVE-2024-39338 / SNYK-JS-AXIOS-7361793 in axios >= 1.3.2 <= 1.7.3 #191

Workflow file for this run

name: Jira closure
on:
issues:
types: [closed, deleted]
jobs:
close-issue:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
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 }}"