Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d767fa5
build(deps): bump actions/checkout in /workflow-templates
dependabot[bot] Jun 24, 2026
49a875a
Merge pull request #747 from nextcloud/dependabot/github_actions/work…
nickvergessen Jun 24, 2026
9967981
ci(deps): bump actions/checkout in /.github/workflows
dependabot[bot] Jun 27, 2026
184e7b5
Merge pull request #748 from nextcloud/dependabot/github_actions/dot-…
nickvergessen Jun 27, 2026
0841f67
fix(phpunit): Don't cancel PHPUnit runs
nickvergessen Jun 29, 2026
1e5d64b
Merge pull request #749 from nextcloud/ci/noid/dont-cancel-phpunit-runs
skjnldsv Jun 29, 2026
78230c8
build(deps): bump actions/cache/save in /workflow-templates
dependabot[bot] Jun 30, 2026
30275a7
build(deps): bump actions/cache/restore in /workflow-templates
dependabot[bot] Jun 30, 2026
b78cec8
build(deps): bump actions/cache in /workflow-templates
dependabot[bot] Jun 30, 2026
c6f50b5
Merge pull request #752 from nextcloud/dependabot/github_actions/work…
nickvergessen Jun 30, 2026
b56e2f7
Merge pull request #751 from nextcloud/dependabot/github_actions/work…
nickvergessen Jun 30, 2026
2a74d30
Merge pull request #750 from nextcloud/dependabot/github_actions/work…
nickvergessen Jun 30, 2026
98f64f6
fix: Use bot token instead of PR author
AndyScherzinger Jun 30, 2026
426142f
Merge pull request #753 from nextcloud/fix/noid/action-token-fix
nickvergessen Jun 30, 2026
1f488c5
feat: Only checkout appinfo/ for xml lint
kesselb Jun 30, 2026
8d479b4
Merge pull request #754 from nextcloud/only-checkout-appinfo-for-xml-…
nickvergessen Jun 30, 2026
8c92e54
ci: Add lables via rest api
AndyScherzinger Jul 3, 2026
ccc4f93
Merge pull request #756 from nextcloud/ci/noid/fixAiPolicy
AndyScherzinger Jul 3, 2026
74fa359
chore: merge updated from Nextcloud organization
nextcloud-command Jul 5, 2026
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
12 changes: 6 additions & 6 deletions .github/workflows/ai-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Collect PR commit messages
id: collect
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
COMMITS_URL: ${{ github.event.pull_request.commits_url }}
run: |
set -euo pipefail
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Create 'AI assisted' label if absent
if: steps.ai_trailers.outputs.ai_assisted == 'true' || steps.agent_signoff.outputs.agent_signoff == 'true' || steps.co_authored.outputs.co_authored == 'true'
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
run: |
gh api "repos/${{ github.repository }}/labels" \
--method POST \
Expand All @@ -137,11 +137,11 @@ jobs:
- name: Label PR as AI assisted
if: steps.ai_trailers.outputs.ai_assisted == 'true' || steps.agent_signoff.outputs.agent_signoff == 'true' || steps.co_authored.outputs.co_authored == 'true'
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
run: |
gh pr edit "${{ github.event.pull_request.number }}" \
--repo "${{ github.repository }}" \
--add-label "AI assisted"
gh api "repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels" \
--method POST \
-f "labels[]=AI assisted"
echo "Added 'AI assisted' label to PR #${{ github.event.pull_request.number }}"

- name: Fail on coding-agent Signed-off-by
Expand Down
12 changes: 6 additions & 6 deletions workflow-templates/ai-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Collect PR commit messages
id: collect
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
COMMITS_URL: ${{ github.event.pull_request.commits_url }}
run: |
set -euo pipefail
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Create 'AI assisted' label if absent
if: steps.ai_trailers.outputs.ai_assisted == 'true' || steps.agent_signoff.outputs.agent_signoff == 'true' || steps.co_authored.outputs.co_authored == 'true'
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
run: |
gh api "repos/${{ github.repository }}/labels" \
--method POST \
Expand All @@ -137,11 +137,11 @@ jobs:
- name: Label PR as AI assisted
if: steps.ai_trailers.outputs.ai_assisted == 'true' || steps.agent_signoff.outputs.agent_signoff == 'true' || steps.co_authored.outputs.co_authored == 'true'
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
run: |
gh pr edit "${{ github.event.pull_request.number }}" \
--repo "${{ github.repository }}" \
--add-label "AI assisted"
gh api "repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels" \
--method POST \
-f "labels[]=AI assisted"
echo "Added 'AI assisted' label to PR #${{ github.event.pull_request.number }}"

- name: Fail on coding-agent Signed-off-by
Expand Down
Loading