Skip to content

Commit 79a7f01

Browse files
feat: Use workflows in reusable-workflows repository (#31)
* feat: Use workflows in reusable-workflows repository Signed-off-by: Dan Webb <[email protected]> * Update actions.yml to v1.7.0 --------- Signed-off-by: Dan Webb <[email protected]> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cec96d3 commit 79a7f01

File tree

4 files changed

+20
-91
lines changed

4 files changed

+20
-91
lines changed

.github/workflows/pr_and_publish.yaml

-90
This file was deleted.

.github/workflows/publish.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Build & Publish container
3+
"on":
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
pull_request:
9+
uses: actionshub/reusable-workflows/.github/workflows/publish.yaml@f72b4965de569759f8927de3c639b063f8cde0cd

.github/workflows/pull_request.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Build & Publish container
3+
"on":
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
pull_request:
10+
uses: actionshub/reusable-workflows/.github/workflows/pull_request.yaml@f72b4965de569759f8927de3c639b063f8cde0cd

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: 'Jason Field'
44
description: 'Run yamllint on your yaml files with ease'
55
runs:
66
using: 'docker'
7-
image: 'docker://ghcr.io/actionshub/yamllint:'
7+
image: 'docker://ghcr.io/actionshub/yamllint:v1.7.0'
88
branding:
99
icon: 'edit-3'
1010
color: 'red'

0 commit comments

Comments
 (0)