Skip to content

Commit 7083d43

Browse files
committed
Add code owners, add triage ping, fix workflows
1 parent 0b3384c commit 7083d43

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
* @MithrilJS/Collaborators
1+
* @MithrilJS/Committers
2+
/.github/ @MithrilJS/Admins

workflows/issue-create.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Ping triage on issue create
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
7+
jobs:
8+
notify:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- run: gh issue comment ${{ github.event.issue.url }} --body '@MithrilJS/triage Please take a look.'
12+
env:
13+
GITHUB_TOKEN: ${{ github.token }}

workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
16+
- run: git clone --depth=1 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
1717
- uses: ./.github/actions/setup
1818
- run: npm run build
1919
- run: npx pr-release merge --target master --source next --commit --force --clean --changelog ./docs/recent-changes.md --compact --minimize-semver-change

workflows/rollback.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
13+
- run: git clone --depth=1 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
1414
- uses: ./.github/actions/setup
1515
- run: npm run build
1616
- run: npx pr-release rollback --verbose --target master --source next --verbose --ignore 'package*' --ignore docs/changelog.md --ignore docs/recent-changes.md

workflows/test-next-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
needs: build
1616
runs-on: ubuntu-latest
1717
steps:
18-
- run: git clone --depth=0 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
18+
- run: git clone --depth=1 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
1919
- uses: ./.github/actions/setup
2020
- run: npm run build
2121
- run: npx pr-release pr --verbose --target master --source next --compact --verbose --minimize-semver-change

0 commit comments

Comments
 (0)