Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
On branch edburns/dd-2794379-cosmetic-post-public-fixes Attempt to us…
…e bypass list.

modified:   .github/workflows/publish-maven.yml

- Get past this error

   > 2026-03-17T02:19:24.1791724Z remote: error: GH013: Repository rule violations found for refs/heads/main.
   > 2026-03-17T02:19:24.1794347Z remote: Review all repository rules at https://github.com/github/copilot-sdk-java/rules?ref=refs%2Fheads%2Fmain
   > 2026-03-17T02:19:24.1796233Z remote:
   > 2026-03-17T02:19:24.1797454Z remote: - Changes must be made through a pull request.
   > 2026-03-17T02:19:24.1798144Z remote:
   > 2026-03-17T02:19:24.1801994Z To https://github.com/github/copilot-sdk-java
   > 2026-03-17T02:19:24.1802675Z  ! [remote rejected]     main -> main (push declined due to repository rule violations)
   > 2026-03-17T02:19:24.1803495Z error: failed to push some refs to 'https://github.com/github/copilot-sdk-java'

   by making it so the push uses a PAT created by a person on the bypass list.

modified:   .gitignore

- Ignore job logs.

Signed-off-by: Ed Burns <edburns@microsoft.com>
  • Loading branch information
edburns committed Mar 17, 2026
commit 0a2bca0335c5719659923334cd5aa2a7ab08a269
2 changes: 1 addition & 1 deletion .github/workflows/publish-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.RELEASE_TOKEN }}

- name: Configure Git for Maven Release
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ examples-test/
blog-copilotsdk/
.claude/worktrees
smoke-test
*job-logs.txt
Loading