56 lines
2.5 KiB
Plaintext
56 lines
2.5 KiB
Plaintext
name: Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'main'
|
|
jobs:
|
|
check-and-create-pr:
|
|
if: github.ref != 'refs/heads/main'
|
|
name: Check and Create PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Cache tea CLI
|
|
id: cache-tea
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: /opt/hostedtoolcache/tea/0.9.2/x64
|
|
key: tea-${{ runner.os }}-0.9.2
|
|
- name: Install tea
|
|
uses: supplypike/setup-bin@v4
|
|
with:
|
|
uri: 'https://gitea.com/gitea/tea/releases/download/v0.9.2/tea-0.9.2-linux-amd64'
|
|
name: 'tea'
|
|
version: '0.9.2'
|
|
- name: Gotify Notification
|
|
uses: eikendev/gotify-action@master
|
|
with:
|
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
|
notification_title: 'GITEA: PR Check'
|
|
notification_message: 'Checking for existing PR... 🔍'
|
|
- name: Check if open PR exists
|
|
id: check-opened-pr-step
|
|
continue-on-error: true
|
|
run: |
|
|
tea login add --name gitea-rinoa --url "${{ secrets.RINOA_GITEA_URL }}" --user gitea-sonarqube-bot --password "${{ secrets.BOT_GITEA_PASSWORD }}" --token ${{ secrets.BOT_GITEA_TOKEN }}
|
|
pr_exists=$(tea pr list --repo ${{ github.repository }} --state open --fields index,title,head | egrep ${{ github.ref_name }} | tail -1 | wc -l)
|
|
echo "exists=$pr_exists" >> $GITHUB_OUTPUT
|
|
- name: Create PR
|
|
if: ${{ steps.check-opened-pr-step.outputs.exists == '0' }}
|
|
run: |
|
|
tea login default gitea-rinoa
|
|
pr_index_old=$(tea pr ls --repo ${{ github.repository }} --state all --fields index,title,head --output csv | sed -e 's|"||g' | egrep '^[0-9]' | head -1 | awk -F"," '{print $1}')
|
|
pr_index_new=$(expr ${pr_index_old} + 1)
|
|
tea pr c -r ${{ github.repository }} -t "Automated PR for ${{ github.ref_name }} - #${pr_index_new}" -d "Automatically created PR for branch: ${{ github.ref_name }}" -a ${{ github.actor }} -L "Docker Compose, Ansible Configs.j2"
|
|
- name: Gotify Notification
|
|
uses: eikendev/gotify-action@master
|
|
with:
|
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
|
notification_title: 'GITEA: PR Check'
|
|
notification_message: 'PR Created 🎟️'
|