Compare commits

...

12 Commits
master ... dev

Author SHA1 Message Date
a627b29230 10
Some checks failed
Continuous Integration / container (push) Failing after 0s
Continuous Integration / Docker Tests (push) Failing after 1s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 2s
/ A job to say hello (push) Failing after 1s
2025-03-20 15:11:36 +03:00
d95804095a 9
Some checks failed
Continuous Integration / container (push) Failing after 0s
Continuous Integration / Docker Tests (push) Failing after 1s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 3s
/ A job to say hello (push) Successful in 0s
2025-03-20 15:04:39 +03:00
19c859d09f 8
Some checks failed
Continuous Integration / Docker Tests (push) Failing after 2s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 3s
/ A job to say hello (push) Failing after 1s
2025-03-20 13:14:34 +03:00
2fa12c328d 7
Some checks failed
Continuous Integration / Docker Tests (push) Failing after 7s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 34s
/ A job to say hello (push) Failing after 1s
2025-03-20 13:12:59 +03:00
2332c0046c 6
Some checks failed
/ A job to say hello (push) Failing after 5s
2025-03-20 13:09:37 +03:00
7987cfc050 5
All checks were successful
/ A job to say hello (push) Successful in 1s
2025-03-20 13:05:11 +03:00
aa855acd0b 4s
All checks were successful
/ A job to say hello (push) Successful in 4s
/ specific_review_requested (push) Successful in 0s
2025-03-20 13:01:34 +03:00
38caf0029b 3
Some checks failed
/ A job to say hello (push) Failing after 0s
/ specific_review_requested (push) Successful in 0s
2025-03-20 12:53:46 +03:00
2963868ef0 2
Some checks failed
/ specific_review_requested (push) Successful in 0s
/ A job to say hello (push) Failing after 0s
2025-03-20 12:52:45 +03:00
59c806c49d self test
Some checks failed
/ specific_review_requested (push) Successful in 0s
/ A job to say hello (push) Failing after 0s
2025-03-20 12:46:43 +03:00
847232bbe6 pr-changelog
All checks were successful
/ specific_review_requested (push) Successful in 0s
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

View File

@ -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

View File

@ -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

View 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'

View File

@ -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