mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 21:21:03 +00:00
feat: add github action (#1)
This commit is contained in:
parent
a1aaa3ba1f
commit
35c5553c27
4 changed files with 61 additions and 1 deletions
1
.github/workflows/ci.yaml
vendored
1
.github/workflows/ci.yaml
vendored
|
|
@ -5,6 +5,7 @@ on:
|
|||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
25
.github/workflows/releaser-pleaser.yaml
vendored
Normal file
25
.github/workflows/releaser-pleaser.yaml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: releaser-pleaser
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, action] # TODO: Remove before merging
|
||||
pull_request:
|
||||
types:
|
||||
- edited
|
||||
- labeled
|
||||
- unlabeled
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
releaser-pleaser:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- run: env
|
||||
- uses: ./
|
||||
Loading…
Add table
Add a link
Reference in a new issue