Skip to content

docs: touch up package init docs #78

docs: touch up package init docs

docs: touch up package init docs #78

Workflow file for this run

name: Dependabot auto-approve
on: pull_request
permissions:
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.RELEASER_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.RELEASER_TOKEN}

Check failure on line 21 in .github/workflows/dependabot.yml

View workflow run for this annotation

GitHub Actions / Dependabot auto-approve

Invalid workflow file

The workflow is not valid. .github/workflows/dependabot.yml (Line: 21, Col: 25): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.RELEASER_TOKEN}}