Skip to content

Disable renovate#1086

Merged
shilgapira merged 1 commit into
mainfrom
disable-renovate
May 12, 2026
Merged

Disable renovate#1086
shilgapira merged 1 commit into
mainfrom
disable-renovate

Conversation

@shilgapira

Copy link
Copy Markdown
Member

No description provided.

@shilgapira shilgapira requested a review from itaihanski May 12, 2026 14:47
@shilgapira shilgapira self-assigned this May 12, 2026
Copilot AI review requested due to automatic review settings May 12, 2026 14:47
@shuni-bot-dev

shuni-bot-dev Bot commented May 12, 2026

Copy link
Copy Markdown

🐕 Review complete — View session on Shuni Portal 🐾

@shilgapira shilgapira enabled auto-merge (squash) May 12, 2026 14:48

@itaihanski itaihanski left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

🤖 ❌

@shilgapira shilgapira merged commit 4793e4e into main May 12, 2026
15 checks passed
@shilgapira shilgapira deleted the disable-renovate branch May 12, 2026 14:49

@shuni-bot-dev shuni-bot-dev Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🐕 Shuni's Review

Disables Renovate and switches the internal install action reference from a pinned SHA to @main in the published export/import composite actions.

Sniffed out 1 issue:

  • 1 🟡 MEDIUM: floating @main ref in marketplace composite actions breaks downstream pinning

See inline comments for details. Woof!

steps:
- name: Install Descope CLI
uses: descope/descopecli/.github/actions/install@9163e884e1c1af93784b265a3dc048f4040b63ad # main
uses: descope/descopecli/.github/actions/install@main

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 MEDIUM: Switching from a pinned SHA to @main for the nested install action breaks reproducibility for downstream consumers.

export and import are marketplace composite actions (note the branding: block). When an external user pins descope/descopecli/.github/actions/export@<sha-or-tag>, the action.yml at that version will still resolve install@main at runtime — so any change on main (Go version bump, install logic change, or a malicious push) immediately affects every pinned consumer. The previous SHA-pin + Renovate pattern provided immutable refs and supply-chain hardening; disabling Renovate without keeping SHA pins removes both.

If the goal is just to stop the Renovate PR churn, consider keeping the SHA pin and updating it manually on release, or pinning to a tag (e.g. @v0.8.14) that moves on intentional cuts rather than every main commit.

steps:
- name: Install Descope CLI
uses: descope/descopecli/.github/actions/install@9163e884e1c1af93784b265a3dc048f4040b63ad # main
uses: descope/descopecli/.github/actions/install@main

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 MEDIUM: Same concern as export/action.yml:36install@main floats for every downstream consumer that pins this composite action to a tag or SHA. Any change on main propagates immediately to all pinned users, undermining the reproducibility and supply-chain guarantees that pinning is meant to provide.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

This PR aims to stop Renovate from opening PRs in this repository and adjusts the repo’s composite GitHub Actions to consume the install action from the main branch.

Changes:

  • Disable Renovate via renovate.json ("enabled": false).
  • Update the import/export composite actions to use descope/descopecli/.github/actions/install@main instead of a pinned commit SHA.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.

File Description
renovate.json Disables Renovate for the repository.
.github/actions/import/action.yml Switches the referenced install action ref from a pinned SHA to main.
.github/actions/export/action.yml Switches the referenced install action ref from a pinned SHA to main.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

steps:
- name: Install Descope CLI
uses: descope/descopecli/.github/actions/install@9163e884e1c1af93784b265a3dc048f4040b63ad # main
uses: descope/descopecli/.github/actions/install@main
steps:
- name: Install Descope CLI
uses: descope/descopecli/.github/actions/install@9163e884e1c1af93784b265a3dc048f4040b63ad # main
uses: descope/descopecli/.github/actions/install@main
Comment thread renovate.json
Comment on lines +5 to +6
],
"enabled": false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants