Skip to content

fix(screenshots.json): replace dynamic repository owner with static username The dynamic repository owner variable was replaced with a static username 'robinmordasiewicz' in the URL. This change was necessary because the dynamic variable was causing issues in fetching the correct URL. Now, the URL will always point to the correct GitHub profile, ensuring the screenshot is taken from the correct page. #111

fix(screenshots.json): replace dynamic repository owner with static username The dynamic repository owner variable was replaced with a static username 'robinmordasiewicz' in the URL. This change was necessary because the dynamic variable was causing issues in fetching the correct URL. Now, the URL will always point to the correct GitHub profile, ensuring the screenshot is taken from the correct page.

fix(screenshots.json): replace dynamic repository owner with static username The dynamic repository owner variable was replaced with a static username 'robinmordasiewicz' in the URL. This change was necessary because the dynamic variable was causing issues in fetching the correct URL. Now, the URL will always point to the correct GitHub profile, ensuring the screenshot is taken from the correct page. #111

---
name: dependabot-automerge
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
issues: write
repository-projects: write
jobs:
dependabot-automerge:
name: dependabot-automerge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@c9c4182bf1b97f5224aee3906fd373f6b61b4526
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
if: ${{contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN}}"