Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 2 additions & 0 deletions .github/workflows/arc-update-runners-scheduled.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# This workflows polls releases from actions/runner and in case of a new one it
# updates files containing runner version and opens a pull request.
name: Runner Updates Check (Scheduled Job)
permissions:
contents: read
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The workflow description mentions it 'opens a pull request' but only has contents: read permission. This configuration will likely cause the workflow to fail when attempting to create pull requests. Consider adding pull-requests: write permission or scope the required permissions at the job level.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback

Comment thread
jiaren-wu marked this conversation as resolved.
Outdated

on:
schedule:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/global-run-first-interaction.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: First Interaction

permissions:
contents: read
issues: write
pull-requests: write

on:
issues:
types: [opened]
Expand Down
Loading