Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jca27 authored Jan 13, 2025
1 parent a45b128 commit 5a09b54
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ inputs:

runs:
using: 'composite'
steps:
env:
GITHUB_REPOSITORY: ${{ github.repsitory }}

Expand Down Expand Up @@ -102,8 +101,8 @@ jobs:
- name: Create Jira Tickets From Today's Vulnerabilities
id: create-jira-tickets
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
# JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
# JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
JIRA_PROJECT_KEY: "SPG"
run: |
# Create Jira Tickets for Vulnerability Groups
Expand Down Expand Up @@ -186,11 +185,11 @@ jobs:

echo "$issue_payload"

# Create the Jira issue using the Jira REST API
curl -X POST "$JIRA_API_URL" \
-u "$JIRA_USER_EMAIL:$JIRA_API_TOKEN" \
-H "Content-Type: application/json" \
-d "$issue_payload"
# # Create the Jira issue using the Jira REST API
# curl -X POST "$JIRA_API_URL" \
# -u "$JIRA_USER_EMAIL:$JIRA_API_TOKEN" \
# -H "Content-Type: application/json" \
# -d "$issue_payload"
done


Expand Down

0 comments on commit 5a09b54

Please sign in to comment.