This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
Update boost_1_83_0.tar.bz2 to 1.84.0 #3155
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: auto-merge | |
on: | |
issue_comment: | |
schedule: | |
- cron: '14 12 * * *' | |
workflow_dispatch: {} | |
jobs: | |
merge: | |
runs-on: ubuntu-latest | |
if: ${{ (github.event.issue && github.event.issue.pull_request) || !github.event.issue }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- run: npm install execa@5 | |
- uses: actions/github-script@v6 | |
name: Check and Merge | |
id: check-changes | |
with: | |
script: | | |
const execa = require("execa"); | |
const mergebot = require('./.github/workflows/merge.js'); | |
const branch = await mergebot.checkChanges(github, context); | |
if (branch) | |
await mergebot.mergeChanges(branch, execa); |