Skip to content

Commit

Permalink
added secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
yairsimantov20 committed Feb 20, 2024
1 parent b760aca commit bc3170e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: ./sail
with:
type: 'jira'
port_client_id: 'port_client_id'
port_client_secret: 'port_client_secret'
port_client_id: ${{ secrets.PORT_CLIENT_ID }}
port_client_secret: ${{ secrets.PORT_CLIENT_SECRET }}
config: |
jira_host: https://jira.com
atlassian_user_email: jira_username
atlassian_user_token: jira_password
jira_host: ${{ secrets.JIRA_HOST }}
atlassian_user_email: ${{ secrets.JIRA_USER_EMAIL }}
atlassian_user_token: ${{ secrets.JIRA_USER_TOKEN }}

0 comments on commit bc3170e

Please sign in to comment.