-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 730 Bytes
/
pr.yaml
File metadata and controls
33 lines (30 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Check PR title
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
permissions:
statuses: write
steps:
- uses: aslafy-z/conventional-pr-title-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/Checkout@v4
- name: Release
uses: dagger/dagger-for-github@8.0.0
with:
version: "v0.16.3"
verb: call
module: github.com/MartinSimango/daggerverse/gopkg@v0.3.0
args: "test --source=."
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}