Skip to content

Feature/id reference for feeds validation #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependabot auto-merge
on: pull_request

permissions:
contents: write
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.GITHUB_TOKEN }}"
- 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.GITHUB_TOKEN}}
23 changes: 23 additions & 0 deletions .github/workflows/pr-base-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Merge base branch into PRs

on:
push:
branches:
# Automatically merge main/master branch into PR local branch.
- master

jobs:
merge:
name: PR base merge
runs-on: ubuntu-latest
strategy:
max-parallel: 1
steps:
- name: PR base merge
uses: deliveryhero/pr-base-auto-merger@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Delay in seconds between consecutive merges
MERGE_DELAY: 5
# Label of PRs for which base can be merged. Use '*' to include all open PRs.
MERGE_LABEL: '*'
Loading