Compare commits

...

7 Commits

Author SHA1 Message Date
Jack Jackson
3a0521bc8f Actually use the token
All checks were successful
JWT Testing / jwt-testingh (push) Successful in 5s
2025-03-18 21:12:23 -07:00
Jack Jackson
e0ad15be95 Sleep so we can connect
Some checks failed
JWT Testing / jwt-testingh (push) Has been cancelled
2025-03-18 20:36:55 -07:00
Jack Jackson
afb154ff72 Change path
Some checks failed
JWT Testing / jwt-testingh (push) Failing after 4s
2025-03-18 20:30:36 -07:00
Jack Jackson
90c6f17df0 Test more
Some checks failed
JWT Testing / jwt-testingh (push) Failing after 48s
2025-03-18 20:21:57 -07:00
Jack Jackson
89284c06ac More testing
Some checks failed
JWT Testing / jwt-testingh (push) Failing after 4s
2025-03-18 20:21:02 -07:00
Jack Jackson
e55379289e Token from Vault action
Some checks failed
JWT Testing / jwt-testingh (push) Failing after 5s
2025-03-17 22:54:29 -07:00
Jack Jackson
1a6fad6af9 JWT Testing
Some checks failed
JWT Testing / jwt-testingh (push) Failing after 3s
Mirror to GitHub / build-and-push (push) Failing after 12s
Gitea Actions Demo / build-and-push (push) Successful in 1m49s
Gitea Actions Demo / update-deployment-repo (push) Successful in 10s
2025-03-17 22:45:41 -07:00
3 changed files with 33 additions and 2 deletions

View File

@ -0,0 +1,25 @@
name: JWT Testing
run-name: JWT Testing
on:
push:
branches:
- jwt-testing
jobs:
jwt-testingh:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/generate-oidc-jwt
- name: Import Secrets
id: import-secrets
uses: hashicorp/vault-action@v2
with:
url: http://vault.avril
method: kubernetes
role: act-runner-helm-charts
secrets: |
github/token?org_name=${{ gitea.repository_owner }} token | GITHUB_TOKEN ;
- name: print
run: |
echo $GITHUB_TOKEN | base64 | base64

View File

@ -1,6 +1,9 @@
name: Mirror to GitHub name: Mirror to GitHub
run-name: Mirror to GitHub run-name: Mirror to GitHub
on: [push] on:
push:
branches:
- main
jobs: jobs:
build-and-push: build-and-push:

View File

@ -1,6 +1,9 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions! 🚀 run-name: ${{ gitea.actor }} is testing out Gitea Actions! 🚀
on: [push] on:
push:
branches:
- main
jobs: jobs:
build-and-push: build-and-push: