Resolve Merge Conflicts #857
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Resolve Merge Conflicts' | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
resolve-merge-conflicts: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: build main | |
run: go build main.go | |
- name: run main | |
run: ./main | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
author: wpt-pr-bot <[email protected]> | |
title: "Resolve pending metadata" | |
commit-message: "Reapply pending metadata from /api/metadata/pending in wpt.fyi" | |
body: | | |
This automated pull request reapplies pending metadata to the head of the wpt-metadata repository. | |
branch: actions/merge-conflicts | |
delete-branch: true | |
labels: do not merge yet |