diff --git a/.github/workflows/check_dependabot.yml b/.github/workflows/check_dependabot.yml new file mode 100644 index 0000000000..3dca14f4d4 --- /dev/null +++ b/.github/workflows/check_dependabot.yml @@ -0,0 +1,22 @@ +name: dependabot validate + +on: + pull_request: + branches: + - main + paths: + - '.github/dependabot.yml' + - '.github/workflows/check_dependabot.yml' + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + cancel-in-progress: true + +jobs: + validate-dependabot: + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - uses: marocchino/validate-dependabot@v2 diff --git a/.github/workflows/pr_opened.yml b/.github/workflows/pr_opened.yml index 74aaa60804..8da6e15aa1 100644 --- a/.github/workflows/pr_opened.yml +++ b/.github/workflows/pr_opened.yml @@ -1,4 +1,5 @@ name: PR Opened + on: pull_request_target: types: [opened]