Skip to content

Commit

Permalink
Pull Request Action
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinDFuller committed Dec 20, 2023
1 parent c6121d9 commit 1ce64ad
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions .github/workflows/test.yml → .github/workflows/pull_reqest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

name: test
name: Pull Request

on:
push:
Expand All @@ -14,8 +14,8 @@ permissions:
pull-requests: read

jobs:
test:
name: Test
Golang:
name: Golang
runs-on: ubuntu-latest

permissions:
Expand All @@ -28,9 +28,6 @@ jobs:
with:
lfs: true

- name: Checkout LFS
run: git lfs checkout

- name: Set up Go
uses: actions/setup-go@v4
with:
Expand All @@ -39,5 +36,21 @@ jobs:
- name: Test
uses: robherley/go-test-action@v0.1.0

- name: Description
uses: jadrol/pr-description-checker-action@v1.0.0

description:
name: Description
runs-on: ubuntu-latest

permissions:
contents: "read"
id-token: "write"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true

- uses: jadrol/pr-description-checker-action@v1.0.0
id: description-checker
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1ce64ad

Please sign in to comment.