Skip to content

Commit 3c2dd38

Browse files
Ensure scheduled post-meeting-notes runs execute with dry-run disabled (#351)
* Initial plan * fix(workflow): disable dry-run for scheduled post-meeting-notes runs Co-authored-by: ondrej-fabry <32484950+ondrej-fabry@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ondrej-fabry <32484950+ondrej-fabry@users.noreply.github.com>
1 parent aa5e6a3 commit 3c2dd38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/post-meeting-notes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
DAYS_BACK: ${{ github.event.inputs.days_back }}
3333
YEAR_MIN: ${{ github.event.inputs.year_min }}
34-
DRY_RUN: ${{ github.event.inputs.dry_run }}
34+
DRY_RUN: ${{ github.event_name == 'schedule' && 'false' || github.event.inputs.dry_run }}
3535
SUMMARY_PATH: meeting-notes-summary.txt
3636
run: |
3737
python - <<'PY'

0 commit comments

Comments
 (0)