-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christian Kotzbauer <[email protected]>
- Loading branch information
1 parent
585cf4b
commit b0cba49
Showing
3 changed files
with
11 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
name: Create default labels | ||
name: create-default-labels | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- ".github/labels.json" | ||
workflow_dispatch: {} | ||
jobs: | ||
labels: | ||
name: DefaultLabelsActions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: lannonbr/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
delete: true | ||
|
||
jobs: | ||
size-label: | ||
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Label Issues | ||
name: label-issues | ||
on: | ||
issue_comment: | ||
types: | ||
|
@@ -10,12 +10,7 @@ on: | |
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: "actions/checkout@v3" | ||
- name: label | ||
uses: ckotzbauer/label-command-action@v2 | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
label-issues: | ||
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
name: Label size of PRs | ||
name: size-label | ||
on: | ||
pull_request_target: | ||
types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
size-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: size-label | ||
uses: pascalgn/size-label-action@a4655c448bb838e8d73b81e97fd0831bb4cbda1e | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
IGNORED: ".*\npackage-lock.json\ndist/**" | ||
|
||
uses: ckotzbauer/actions-toolkit/.github/workflows/[email protected] |