32 lines
819 B
YAML
32 lines
819 B
YAML
name: Buf CI
|
|
on:
|
|
push:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
packages: write
|
|
|
|
jobs:
|
|
buf:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
echo "test"
|
|
echo ${{ gitea.server_url }}
|
|
echo ${{ gitea.token }}
|
|
echo ${{ secrets.PROD_REG_TOKEN }}
|
|
echo ${{ gitea.ref_name }}
|
|
echo ${{ gitea.action_ref }}
|
|
echo ${{ gitea.action_path }}
|
|
echo ${{ gitea.action_repository }}
|
|
echo ${{ gitea.base_ref }}
|
|
echo ${{ gitea.env }}
|
|
echo ${{ gitea.event }}
|
|
echo ${{ gitea.head_ref }}
|
|
echo ${{ gitea.job }}
|
|
echo ${{ gitea.run_attempt }}
|
|
echo ${{ gitea.triggering_actor }}
|
|
echo ${{ gitea.workflow_ref }}
|
|
echo ${{ gitea.workspace }}
|