Bump @vercel/ncc from 0.38.1 to 0.38.3 #255
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: Snyk Jira Ticket Creation Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [ main ] | |
jobs: | |
create_snyk_ticket: | |
name: Snyk Run | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' || 'push' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Snyk and Run Snyk test | |
run: | | |
npm install -g snyk | |
snyk test --all-projects --json > snyk_output.txt || true | |
cat snyk_output.txt | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
- name: use the custom github action to parse Snyk output | |
uses: ./ | |
with: | |
jira-username: ${{ secrets.WORKSPACE_EMAIL }} | |
jira-token: ${{ secrets.API_TOKEN }} | |
jira-host: arayateklu.atlassian.net | |
jira-project-key: MAC | |
jira-issue-type: Task | |
# jira-custom-field-key-value: '' | |
jira-labels: test,Snyk | |
jira-title-prefix: '[MACFC] - Snyk : ' | |
is_jira_enterprise: false | |
assign-jira-ticket-to: ${{ secrets.ACCOUNT_ID_AT }} | |
scan-output-path: 'snyk_output.txt' | |
scan-type: 'snyk' |