mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-05 03:10:25 +00:00
14 lines
263 B
YAML
14 lines
263 B
YAML
on: push
|
|
|
|
env:
|
|
variable: "${{ github.repository_owner }}"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: print env.variable
|
|
run: |
|
|
echo ${{ env.variable }}
|
|
exit ${{ (env.variable == 'actions-oss') && '0' || '1'}}
|