Skip to content

Commit

Permalink
Create bedevere.yml (#74)
Browse files Browse the repository at this point in the history
* Create bedevere.yml

* Update bedevere.yml

* Update bedevere.yml

* Update bedevere.yml

* Update bedevere.yml

* Update bedevere.yml

Set the GH Token env var

* Update bedevere.yml

Remove duplicated event

* Change to pull_request_target

* call the job pr_check instead of build

* Use pull_request instead of pull_request_target

* Update bedevere.yml

* Update bedevere.yml
  • Loading branch information
Mariatta committed Sep 8, 2023
1 parent 4f7d3b6 commit b17f1f6
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/bedevere.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Bedevere

on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
- labeled
- unlabeled
- review_requested
- ready_for_review
- converted_to_draft
- closed
create:
types:
- branch
pull_request_review:
types:
- submitted
- dismissed
issue_comment:
types:
- created
push:

jobs:
pr_check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: run bedevere actions
uses: mariatta/bedevere@gh-actions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b17f1f6

Please sign in to comment.