Skip to content

Commit abb86ba

Browse files
committed
ci: Add reusable workflow
1 parent 1502270 commit abb86ba

File tree

4 files changed

+33
-1
lines changed

4 files changed

+33
-1
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

10-
[*.{yaml,yml}]
10+
[*.{md,yaml,yml}]
1111
indent_style = space
1212
indent_size = 2
1313
quote_type = single

.github/workflows/lint.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Lint'
2+
3+
on:
4+
push:
5+
branches-ignore: ['*-no-ci']
6+
tags-ignore: ['*']
7+
8+
permissions:
9+
contents: 'read'
10+
pages: 'write'
11+
id-token: 'write'
12+
13+
jobs:
14+
bash:
15+
name: 'Bash'
16+
uses: 'fox-land/hyperupcall-action/.github/workflows/bash-lint.yml@main'
File renamed without changes.

.github/workflows/website.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Website'
2+
3+
on:
4+
push:
5+
branches-ignore: ['*-no-ci']
6+
tags-ignore: ['*']
7+
8+
permissions:
9+
contents: 'read'
10+
pages: 'write'
11+
id-token: 'write'
12+
13+
jobs:
14+
build-and-deploy:
15+
name: 'Build And Deploy'
16+
uses: 'fox-land/hyperupcall-action/.github/workflows/website.yml@main'

0 commit comments

Comments
 (0)