From bc3170e16118bec284f7b78edea35f099934446d Mon Sep 17 00:00:00 2001 From: yair Date: Tue, 20 Feb 2024 16:29:15 +0200 Subject: [PATCH] added secrets --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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