Skip to content

refactor(favicon): extract faction renderers and improve type safety #62

refactor(favicon): extract faction renderers and improve type safety

refactor(favicon): extract faction renderers and improve type safety #62

Workflow file for this run

name: Monica Authentication Setup
on:
workflow_dispatch:
push:
paths:
- '.github/monica.yml'
- '.devcontainer/devcontainer.json'
jobs:
setup-monica-auth:
runs-on: ubuntu-latest
permissions:
permissions:
contents: read
actions: write
id-token: write
secrets: write
steps:

Check failure on line 20 in .github/workflows/monica-auth.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/monica-auth.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure GitHub CLI
run: |
echo "Setting up GitHub CLI authentication"
gh auth setup-git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Verify Monica Configuration
run: |
echo "Verifying Monica configuration"
if [ -f .github/monica.yml ]; then
echo "Monica configuration found"
else
echo "Monica configuration not found"
exit 1
fi
- name: Set Repository Secret for Monica
uses: gliech/create-github-secret-action@v1
with:
name: MONICA_AUTH_TOKEN
value: ${{ secrets.GITHUB_TOKEN }}
pa_token: ${{ secrets.GITHUB_TOKEN }}