ci: remove deprecated assign workflow (actions/add-to-project deprecated)#11
Closed
ss-o wants to merge 5 commits into
Closed
ci: remove deprecated assign workflow (actions/add-to-project deprecated)#11ss-o wants to merge 5 commits into
ss-o wants to merge 5 commits into
Conversation
Remove assign.yml — actions/add-to-project is deprecated and the organization no longer uses this workflow for project assignment.
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions configuration by removing multiple workflows (including the deprecated actions/add-to-project usage) and restructuring the Trunk CI workflow definition.
Changes:
- Delete
.github/workflows/assign.ymlto remove the deprecatedactions/add-to-projectworkflow. - Delete
.github/workflows/labeler.ymland.github/workflows/sync-labels.yml. - Update
.github/workflows/trunk-check.yml(rename, add permissions/concurrency, adjust triggers, and change how the reusable Trunk workflow is invoked).
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
.github/workflows/trunk-check.yml |
Refactors Trunk workflow config (name/trigger/permissions/concurrency) and changes the reusable workflow invocation. |
.github/workflows/sync-labels.yml |
Removes scheduled/manual label sync workflow. |
.github/workflows/labeler.yml |
Removes PR labeler workflow that used actions/labeler. |
.github/workflows/assign.yml |
Removes deprecated actions/add-to-project workflow for auto-assigning items to a project. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
1
to
+3
| --- | ||
| name: "⭕ Trunk" | ||
| name: Trunk Code Quality | ||
|
|
| secrets: | ||
| trunk-token: ${{ secrets.TRUNK_TOKEN }} | ||
| with: | ||
| arguments: --no-progress |
Comment on lines
8
to
+13
| pull_request: | ||
| types: [opened, synchronize] | ||
| types: [opened, synchronize, reopened] | ||
| schedule: | ||
| - cron: "0 05 * * 5" | ||
| workflow_dispatch: | ||
| workflow_dispatch: {} | ||
|
|
Agent-Logs-Url: https://github.com/z-shell/zsh/sessions/ff524e06-a9f3-4c94-bea3-c5503e3f2297 Co-authored-by: ss-o <59910950+ss-o@users.noreply.github.com>
…chedule mode Co-authored-by: ss-o <59910950+ss-o@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Superseded
The focused deprecated-assignment removal is now handled by #15. This older branch also mixes unrelated repository metadata and agent-file additions that do not match the current centralized instruction policy. Closing in favor of the scoped replacement.