-
Notifications
You must be signed in to change notification settings - Fork 26
Keep main updated with commits on master #1337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9150274
CLOUDDST-32368 : Fix FBC remove: call opm registry rm only for packag…
28cec98
Release IIB v9.5.1
yashvardhannanavati 05fae7f
Update dependency urllib3 to v2.7.0 [SECURITY]
renovate[bot] e7656da
Update dependency mako to v1.3.12 [SECURITY]
renovate[bot] cc09423
Update dependency python-qpid-proton to v0.40.0
renovate[bot] 8198fd4
Update python Docker tag to v3.14.5
renovate[bot] 173c86d
Update dependency coverage to v7.14.0
renovate[bot] fe4293e
Update dependency googleapis-common-protos to v1.75.0
renovate[bot] 8212e2f
Update dependency requests to v2.34.1
renovate[bot] cb93862
Update dependency idna to v3.15
renovate[bot] f52a0e1
Release v9.5.2
JAVGan 12aeba8
chore: initialize fullsend per-repo installation
yashvardhannanavati File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # fullsend per-repo configuration | ||
| # https://github.com/fullsend-ai/fullsend | ||
| # | ||
| # This file configures fullsend for per-repo installation mode. | ||
| # See ADR 0033 for details. | ||
| version: "1" | ||
| roles: | ||
| - triage | ||
| - coder | ||
| - review | ||
| - fix | ||
| - retro | ||
| - prioritize |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| # fullsend shim workflow (per-repo installation mode) | ||
| # Routes events to agent workflows via reusable-dispatch.yml. | ||
| # All agent execution happens in this repo's context — no external | ||
| # config repo is needed. | ||
| # | ||
| # Security: pull_request_target runs the BASE branch version of this workflow, | ||
| # preventing PRs from modifying it to exfiltrate credentials. | ||
| # This shim never checks out PR code, so it is not vulnerable to "pwn request" | ||
| # attacks. | ||
| # | ||
| # Routing: this shim forwards the raw event context to reusable-dispatch.yml, | ||
| # which determines the stage and conditionally calls the appropriate | ||
| # reusable-{stage}.yml workflow. Adding a new stage requires only a case | ||
| # branch in reusable-dispatch.yml — zero changes to this repo. | ||
| name: fullsend | ||
|
|
||
| permissions: | ||
|
yashvardhannanavati marked this conversation as resolved.
|
||
| actions: write | ||
| id-token: write | ||
| contents: write | ||
| issues: write | ||
| packages: read | ||
| pull-requests: write | ||
|
|
||
| on: | ||
| issues: | ||
| types: [opened, edited, labeled] | ||
| issue_comment: | ||
| types: [created] | ||
| pull_request_target: | ||
|
yashvardhannanavati marked this conversation as resolved.
|
||
| types: [opened, synchronize, ready_for_review, closed] | ||
| pull_request_review: | ||
| types: [submitted] | ||
|
|
||
| jobs: | ||
| dispatch: | ||
| concurrency: | ||
| group: fullsend-dispatch-${{ github.event.issue.number || github.event.pull_request.number }} | ||
| cancel-in-progress: false | ||
| if: >- | ||
| github.event_name != 'issue_comment' | ||
| || github.event.comment.user.type != 'Bot' | ||
| uses: fullsend-ai/fullsend/.github/workflows/reusable-dispatch.yml@v0 | ||
|
yashvardhannanavati marked this conversation as resolved.
|
||
| with: | ||
| event_action: ${{ github.event.action }} | ||
| install_mode: per-repo | ||
| mint_url: ${{ vars.FULLSEND_MINT_URL }} | ||
| gcp_region: ${{ vars.FULLSEND_GCP_REGION }} | ||
| secrets: | ||
| FULLSEND_GCP_WIF_PROVIDER: ${{ secrets.FULLSEND_GCP_WIF_PROVIDER }} | ||
| FULLSEND_GCP_PROJECT_ID: ${{ secrets.FULLSEND_GCP_PROJECT_ID }} | ||
|
|
||
|
yashvardhannanavati marked this conversation as resolved.
|
||
| stop-fix: | ||
| if: >- | ||
| github.event_name == 'issue_comment' | ||
| && github.event.issue.pull_request | ||
| && github.event.comment.user.type != 'Bot' | ||
| && github.event.comment.body == '/fs-fix-stop' | ||
| && ( | ||
| github.event.comment.author_association == 'OWNER' | ||
| || github.event.comment.author_association == 'MEMBER' | ||
| || github.event.comment.author_association == 'COLLABORATOR' | ||
| || github.event.comment.author_association == 'CONTRIBUTOR' | ||
|
yashvardhannanavati marked this conversation as resolved.
|
||
| || github.event.comment.user.login == github.event.issue.user.login | ||
| ) | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| issues: write | ||
| pull-requests: write | ||
| steps: | ||
| - name: Add fullsend-no-fix label and notify | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| PR_NUMBER: ${{ github.event.issue.number }} | ||
| REPO: ${{ github.repository }} | ||
| run: | | ||
| set -euo pipefail | ||
| gh label create "fullsend-no-fix" --repo "$REPO" \ | ||
| --description "Skip bot-triggered fix agent runs" --color "FBCA04" \ | ||
| --force 2>/dev/null || true | ||
| gh pr edit "$PR_NUMBER" --repo "$REPO" \ | ||
| --add-label "fullsend-no-fix" | ||
| gh pr comment "$PR_NUMBER" --repo "$REPO" \ | ||
| --body "Fix agent disabled for this PR. Remove the \`fullsend-no-fix\` label or use \`/fs-fix\` to re-engage." | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 3.14.0 | ||
| 3.14.5 |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.