Skip to content

Commit

Permalink
testo3
Browse files Browse the repository at this point in the history
  • Loading branch information
andyMrtnzP committed Dec 16, 2024
1 parent c40c5ce commit 9887b9d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/always-fail.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Lint

on: [pull_request]
on:
repository_dispatch:

jobs:
Lint:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/merge-dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#approve-a-pull-request

name: Dependabot auto-merge
on: pull_request
on:
repository_dispatch:


permissions:
contents: write
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PR Workflow

on: [pull_request]

jobs:
lint:
uses: ./.github/workflows/lint.yml@main

codeql:
uses: ./.github/workflows/codeql-analysis.yml@main

automerge:
needs: [lint, codeql]
uses: ./.github/workflows/merge-dependabot.yml@main

0 comments on commit 9887b9d

Please sign in to comment.