Skip to content

Commit 37e20fb

Browse files
Antony BaileyAntony Bailey
authored andcommitted
some workflows
1 parent 0efd414 commit 37e20fb

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/size-label.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: size-label
2+
on: pull_request_target
3+
jobs:
4+
size-label:
5+
permissions:
6+
contents: read
7+
pull-requests: write
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: size-label
11+
uses: "pascalgn/size-label-action@v0.5.5"
12+
env:
13+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/tag.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Tag
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
schedule:
7+
- cron: '0 0 * * *'
8+
workflow_dispatch:
9+
10+
11+
jobs:
12+
tag:
13+
name: Tag Release
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
17+
steps:
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19+
with:
20+
fetch-depth: '0'
21+
- name: Bump version and push tag
22+
uses: anothrNick/github-tag-action@master
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
WITH_V: true

0 commit comments

Comments
 (0)