Skip to content

Commit

Permalink
test run
Browse files Browse the repository at this point in the history
  • Loading branch information
brettedw committed Nov 7, 2024
1 parent 1150b60 commit 11355a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/issue-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
shell: bash
run: |
# Determine if the current week is an "even" week (biweekly toggle)
if [ $(( $(date +%V) % 2 )) -eq 0 ]; then
if [ $(( $(date +%V) % 2 )) -eq 1 ]; then
# Calculate the first and last day of the 2-week period
first_day=$(date -d "2 weeks ago" +%Y-%m-%d)
last_day=$(date +%Y-%m-%d)
Expand All @@ -41,6 +41,7 @@ jobs:

- name: Create issue
uses: peter-evans/create-issue-from-file@v5
if: ${{ env.skip_run != 'true' }}
with:
title: Sprint metrics report
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 11355a1

Please sign in to comment.