Compare commits

..

12 Commits
master ... dev

Author SHA1 Message Date
a627b29230 10 2025-03-20 15:11:36 +03:00
d95804095a 9 2025-03-20 15:04:39 +03:00
19c859d09f 8 2025-03-20 13:14:34 +03:00
2fa12c328d 7 2025-03-20 13:12:59 +03:00
2332c0046c 6 2025-03-20 13:09:37 +03:00
7987cfc050 5 2025-03-20 13:05:11 +03:00
aa855acd0b 4s 2025-03-20 13:01:34 +03:00
38caf0029b 3 2025-03-20 12:53:46 +03:00
2963868ef0 2 2025-03-20 12:52:45 +03:00
59c806c49d self test 2025-03-20 12:46:43 +03:00
847232bbe6 pr-changelog 2025-03-20 12:42:49 +03:00
8c95247e2f chore: rename .github to .gitea 2025-03-20 12:38:52 +03:00
8 changed files with 37 additions and 6 deletions

@ -3,15 +3,19 @@ name: Continuous Integration
on:
pull_request:
branches:
- main
- master
- dev
push:
branches:
- main
- master
- dev
permissions:
contents: read
jobs:
container:
image: docker.arswarog.ru:5000/jt4d/gitea-actions-base-image:latest
test-docker:
name: Docker Tests
runs-on: ubuntu-latest

@ -3,10 +3,12 @@ name: Lint Codebase
on:
pull_request:
branches:
- main
- master
- dev
push:
branches:
- main
- master
- dev
permissions:
contents: read

@ -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!"
# 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
echo "time=$(date)" >>"$GITHUB_OUTPUT"
echo "time=$(date)"
exit 0