diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 65b5c09..67d350b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 \ No newline at end of file + jira_host: ${{ secrets.JIRA_HOST }} + atlassian_user_email: ${{ secrets.JIRA_USER_EMAIL }} + atlassian_user_token: ${{ secrets.JIRA_USER_TOKEN }} \ No newline at end of file