Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(workflows):[#828] fix secret names and executionFilter #854

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/cucumber-integration-test-INT-association.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ jobs:
exit 1
fi
shell: bash
- name: Check if is defined jiraUser is defined
- name: Check if is defined IRS_XRAY_JIRA_USER is defined
run: |
if [[ -z "${{ secrets.ASSOCIATION_TX_JIRA_USERNAME }}" ]]; then
if [[ -z "${{ secrets.IRS_XRAY_JIRA_USER }}" ]]; then
echo "Error: Missing secret: Please configure IRS_XRAY_JIRA_USER."
exit 1
fi
- name: Check if is defined jiraUser is defined
- name: Check if is defined IRS_XRAY_JIRA_SECRET is defined
run: |
if [[ -z "${{ secrets.ASSOCIATION_TX_JIRA_PASSWORD }}" ]]; then
if [[ -z "${{ secrets.IRS_XRAY_JIRA_SECRET }}" ]]; then
echo "Error: Missing secret: Please configure IRS_XRAY_JIRA_SECRET."
exit 1
fi
Expand All @@ -61,10 +61,10 @@ jobs:
regularUserApiKey: ${{ secrets.INT_REGULAR_USER_API_KEY }}
adminUserApiKey: ${{ secrets.INT_ADMIN_USER_API_KEY }}
cucumberPublishToken: ${{ secrets.IRS_CUCUMBER_PUBLISH_TOKEN }}
jiraUser: ${{ secrets.ASSOCIATION_TX_JIRA_USERNAME }}
jiraPassword: ${{ secrets.ASSOCIATION_TX_JIRA_PASSWORD }}
jiraUser: ${{ secrets.IRS_XRAY_JIRA_USER }}
jiraPassword: ${{ secrets.IRS_XRAY_JIRA_SECRET }}
with:
executionFilter: ${{ github.event.inputs.executionFilter || '!Ignore& !INACTIVE & IRS & INT & POLICY_STORE' }}
executionFilter: ${{ github.event.inputs.executionFilter || '!Ignore& !INACTIVE & IRS & INT' }}
# JIRA filter 10001: project = CXTM AND labels = "INT" AND labels = "IRS" AND status = Ready AND testType = Cucumber
exportFilter: ${{ github.event.inputs.exportFilter || '10001' }}

Loading