Compare commits
62 commits
Author | SHA1 | Date | |
---|---|---|---|
ea760fa1cb | |||
af6309d249 | |||
7309e148a0 | |||
bafdb90dc0 | |||
e1271ab549 | |||
ec5622ffdb | |||
|
5fdb9ffb85 | ||
c9fbc85ce7 | |||
|
ebaf4f65f7 | ||
|
70681b0fd7 | ||
|
d526c6db40 | ||
|
be137f6cb7 | ||
|
d92df0782a | ||
|
6a25a42112 | ||
3dfad188ef | |||
|
2b15d23335 | ||
|
c6f45aab54 | ||
|
83376261b7 | ||
|
5b5bd6134e | ||
|
9a5d2d281f | ||
|
fcb877ede2 | ||
|
2d7bbcca5c | ||
|
b5985956ca | ||
|
64784eb3ff | ||
3fb9ec2f8a | |||
|
e923c31c75 | ||
|
3832a2867f | ||
5f907647cd | |||
|
3a1fcd5571 | ||
|
46846df6b1 | ||
|
76abf33ab2 | ||
|
4b88bcda81 | ||
|
e63488a512 | ||
|
d3154d9925 | ||
|
536a575ccb | ||
|
6bc805238c | ||
|
d776d7b8b0 | ||
|
8a99516d4d | ||
|
2cb42b7004 | ||
|
10fcc3085f | ||
|
ea546913f7 | ||
|
44747f4794 | ||
|
956dcdf223 | ||
|
6a4567ad1a | ||
|
e236cfbd32 | ||
|
1ca8e17ce9 | ||
|
c82c6219b9 | ||
|
8e02068aed | ||
|
549f5f3f3c | ||
|
05e3329d39 | ||
|
5a01bba56e | ||
|
33d640cf3d | ||
a1d0a2053b | |||
2b2ec955db | |||
|
fd807eab75 | ||
|
7da73cf634 | ||
|
a2e6e6c362 | ||
|
23788aaccf | ||
14066e2bf6 | |||
6c10a9e4e9 | |||
69bfb2d6bc | |||
428a5eb5f5 |
4 changed files with 25 additions and 20 deletions
20
.forgejo/workflows/commit.yml
Normal file
20
.forgejo/workflows/commit.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: on push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
with:
|
||||
token: ${{ secrets.MAINTAINER_TOKEN }}
|
||||
|
||||
- name: Push Git Tag
|
||||
run: |
|
||||
git tag ${{ github.run_number }}
|
||||
git push origin ${{ github.run_number }}
|
|
@ -3,14 +3,14 @@ name: on tags
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
||||
- name: Ref
|
||||
shell: bash
|
|
@ -1,15 +0,0 @@
|
|||
name: on push
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
||||
- name: Ref
|
||||
shell: bash
|
||||
run: echo ${{ github.ref }}
|
|
@ -1,4 +1,4 @@
|
|||
# Gitea action test: Subsequent workflows
|
||||
# Forgejo action test: Subsequent workflows
|
||||
|
||||
Is it possible to have subsequent workflow in Gitea? Whenever I create a commit, gitea actions should tag it.
|
||||
Is it possible to have subsequent workflow in Forgejo? Whenever I create a commit, gitea actions should tag it.
|
||||
On every tag gitea actions should be executed.
|
||||
|
|
Loading…
Add table
Reference in a new issue