Skip to content
Open
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion .github/actions/check-labels/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function run() {
const hasReleaseLabel = labelNames.includes('release');
const userName = pull_request?.user.login;

if (userName === 'renovate[bot]') {
if (userName === 'renovate[bot]' || userName === 'renovate-sh-app[bot]') {
if (isMissingSemverLabel) {
const files = await getPullRequestFiles({ octokit });

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/check-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ permissions:

jobs:
check-labels:
Comment thread
leventebalogh marked this conversation as resolved.
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-x64
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -475,14 +475,14 @@ jobs:
working-directory: ./${{ matrix.workingDir }}

- name: '@grafana/sign-plugin - use GRAFANA_ACCESS_POLICY_TOKEN to sign generate-panel plugin'
if: ${{ matrix.workingDir == 'myorg-nobackend-panel' && github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.fork != true }}
if: ${{ matrix.workingDir == 'myorg-nobackend-panel' && github.actor != 'renovate[bot]' && github.actor != 'renovate-sh-app[bot]' && github.event.pull_request.head.repo.fork != true }}
env:
GRAFANA_ACCESS_POLICY_TOKEN: ${{ fromJSON(steps.get-secrets.outputs.secrets).GRAFANA_ACCESS_POLICY_TOKEN }}
run: sign-plugin --rootUrls http://www.example.com --signatureType private
working-directory: ./${{ matrix.workingDir }}

- name: Frontend Knip Report
if: ${{ github.actor != 'dependabot[bot]' }}
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'renovate-sh-app[bot]' }}
# Knip uses the scaffolded plugin .gitignore file for ignore paths.
# github workflows use paths like home/runner/work/plugin-tools/plugin-tools
# so we need to remove /work otherwise knip returns false positives
Expand Down Expand Up @@ -516,7 +516,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: [test, generate-plugins]
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') && github.actor != 'dependabot[bot]'"
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') && github.actor != 'renovate[bot]' && github.actor != 'renovate-sh-app[bot]'"
name: Release packages
env:
NX_BRANCH: ${{ github.event.number || github.ref_name }}
Expand Down
Loading