Skip to content

Commit

Permalink
Enable Bugzilla query to run daily (#45)
Browse files Browse the repository at this point in the history
* Enable Bugzilla query to run daily

* rename github action to see the  name in github ui

* using url directly

* fix env variable for bugzilla api key
  • Loading branch information
isabelrios authored Oct 17, 2024
1 parent c8eb29c commit 0e1eec6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/production-daily.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testops Report DAILY
name: Testops Report DAILY - Production

# Daily @8am UTC
on:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
echo "JIRA_USER=${{ secrets.JIRA_USER }}" >> $GITHUB_ENV
echo "JIRA_PASSWORD=${{ secrets.JIRA_PASSWORD }}" >> $GITHUB_ENV
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo "BUGZILLA_API_KEY=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo "BUGZILLA_API_KEY=${{ secrets.BUGZILLA_API_KEY }}" >> $GITHUB_ENV
- name: Jira query
Expand All @@ -57,9 +57,9 @@ jobs:
if: always()
run: python ./__main__.py --report-type jira-qa-needed

#- name: Bugzilla query
# if: always()
# run: python ./__main__.py --report-type bugzilla-qe-verify
- name: Bugzilla query
if: always()
run: python ./__main__.py --report-type bugzilla-qe-verify

- name: Set job log URL
if: always()
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging-daily.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testops Report DAILY
name: Testops Report DAILY - Staging

# Daily @4am UTC
on:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
echo "TESTRAIL_USERNAME=${{ secrets.TESTRAIL_USERNAME }}" >> $GITHUB_ENV
echo "TESTRAIL_PASSWORD=${{ secrets.TESTRAIL_PASSWORD }}" >> $GITHUB_ENV
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo "BUGZILLA_API_KEY=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo "BUGZILLA_API_KEY=${{ secrets.BUGZILLA_API_KEY }}" >> $GITHUB_ENV
#- name: Update DB - test runs
# run: python ./__main__.py --report-type test-run-counts --project fenix --start-date 2021-08-15 --end-date 2021-10-01
Expand Down

0 comments on commit 0e1eec6

Please sign in to comment.