Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
egress-policy: audit

- name: Run unified inactivity bot (Phase 1 + Phase 2)
- name: Run inactivity bot
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
Expand All @@ -38,4 +38,4 @@ jobs:
# - schedule: DRY_RUN = 0 (real actions)
# - workflow_dispatch: DRY_RUN derived from the "dry_run" input
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.dry_run == 'true' && '1' || '0') || '0' }}
run: bash .github/scripts/bot-inactivity-unassign-phase.sh
run: bash .github/scripts/bot-inactivity-unassign.sh
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.

### Changed

- Renamed bot-inactivity workflow files to remove "-phase" suffix since the process no longer uses phased execution (#1339)
- Renamed the GitHub notify team script to match its corresponding workflow filename for better maintainability (#1338)
- style: apply black formatting to examples (#1299)
-Update GitHub workflow names in `.github/workflows/bot-workflows.yml` to match correct references [(#1284)]
Expand Down
Loading