Reformat GitHub YAML files

This commit is contained in:
Héctor Molinero Fernández
2024-07-20 12:02:09 +02:00
parent 573d30cc72
commit 3414b17506
3 changed files with 64 additions and 64 deletions

View File

@@ -1,23 +1,23 @@
name: 'Rebuild latest release'
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Rebuild latest release"
on:
schedule:
- cron: '20 04 * * 1'
- cron: "20 04 * * 1"
workflow_dispatch:
permissions: {}
jobs:
trigger-rebuild:
name: 'Trigger rebuild'
runs-on: 'ubuntu-latest'
name: "Trigger rebuild"
runs-on: "ubuntu-latest"
permissions:
contents: 'read'
contents: "read"
steps:
- name: 'REST API call'
- name: "REST API call"
env:
GITHUB_PAT: '${{ secrets.PERSONAL_GITHUB_TOKEN }}'
GITHUB_PAT: "${{ secrets.PERSONAL_GITHUB_TOKEN }}"
run: |
RELEASE_TAG="$(curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases/latest" \