diff --git a/.github/scripts/bot-inactivity-unassign-phase.sh b/.github/scripts/bot-inactivity-unassign.sh similarity index 100% rename from .github/scripts/bot-inactivity-unassign-phase.sh rename to .github/scripts/bot-inactivity-unassign.sh diff --git a/.github/workflows/bot-inactivity-unassign-phase.yml b/.github/workflows/bot-inactivity-unassign.yml similarity index 89% rename from .github/workflows/bot-inactivity-unassign-phase.yml rename to .github/workflows/bot-inactivity-unassign.yml index 0d8fbbae7..4592eaa8b 100644 --- a/.github/workflows/bot-inactivity-unassign-phase.yml +++ b/.github/workflows/bot-inactivity-unassign.yml @@ -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 }} @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index eedc48ceb..193abe2a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)]