Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
a627b29230 | |||
d95804095a | |||
19c859d09f | |||
2fa12c328d | |||
2332c0046c | |||
7987cfc050 | |||
aa855acd0b | |||
38caf0029b | |||
2963868ef0 | |||
59c806c49d | |||
847232bbe6 | |||
8c95247e2f |
@ -3,15 +3,19 @@ name: Continuous Integration
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
|
- dev
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
|
- dev
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
container:
|
||||||
|
image: docker.arswarog.ru:5000/jt4d/gitea-actions-base-image:latest
|
||||||
test-docker:
|
test-docker:
|
||||||
name: Docker Tests
|
name: Docker Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
@ -3,10 +3,12 @@ name: Lint Codebase
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
|
- dev
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- master
|
||||||
|
- dev
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
25
.gitea/workflows/pr-changelog.yml
Normal file
25
.gitea/workflows/pr-changelog.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
hello_world_job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: A job to say hello
|
||||||
|
steps:
|
||||||
|
- name: Hello world action step
|
||||||
|
id: hello
|
||||||
|
uses: https://git.arswarog.ru/jt4d/pr-changelog-action@master
|
||||||
|
with:
|
||||||
|
who-to-greet: 'Mona the Octocat'
|
||||||
|
hello_world_job_gh:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: A job to say hello
|
||||||
|
steps:
|
||||||
|
- name: Hello world action step
|
||||||
|
id: hello
|
||||||
|
uses: actions/hello-world-docker-action@v2
|
||||||
|
with:
|
||||||
|
who-to-greet: 'Mona the Octocat'
|
@ -4,9 +4,9 @@
|
|||||||
GREETING="Hello, $INPUT_WHO_TO_GREET!"
|
GREETING="Hello, $INPUT_WHO_TO_GREET!"
|
||||||
|
|
||||||
# Use workflow commands to do things like set debug messages
|
# Use workflow commands to do things like set debug messages
|
||||||
echo "::notice file=entrypoint.sh,line=7::$GREETING"
|
echo "$GREETING"
|
||||||
|
|
||||||
# Write outputs to the $GITHUB_OUTPUT file
|
# Write outputs to the $GITHUB_OUTPUT file
|
||||||
echo "time=$(date)" >>"$GITHUB_OUTPUT"
|
echo "time=$(date)"
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user