Files
actions/.gitea/workflows/ci.yaml
Workflow config file is invalid. Please check your config file: yaml: line 15: could not find expected ':'
Timo Behrendt acff90b066
All checks were successful
CD / Release (push) Successful in 2m43s
feat: add get-repo-name (#20)
Reviewed-on: #20
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-26 22:36:25 +01:00

17 lines
488 B
YAML

name: CI
on:
pull_request:
jobs:
test_get-repo-name:
name: Test get-repo-name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- id: repo
uses: ./get-repo-name
- run: |
test "${{ steps.repo.outputs.name }}" = "actions" || (echo "Expected repo name 'actions', got '${{ steps.repo.outputs.name }}'" && exit 1)
- run: echo "Original repository name is ${{ GITEA_REPOSITORY }}"