This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
Monthly Nightly Update #5
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: Monthly Nightly Update | |
on: | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
update: | |
name: Update nightly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- name: Write nightly version | |
run: echo $(date +"nightly-%Y-%m"-01) > .github/nightly-version | |
- name: Create the commit | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "<>" | |
git checkout -b $(date +"nightly-%Y-%m") | |
git add .github/nightly-version | |
git commit -m "Update nightly" | |
git push -u origin $(date +"nightly-%Y-%m") | |
- name: Pull Request | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const { repo, owner } = context.repo; | |
const result = await github.rest.pulls.create({ | |
title: (new Date()).toLocaleString( | |
false, | |
{ month: "long", year: "numeric" } | |
) + " - Rust Nightly Update", | |
owner, | |
repo, | |
head: "nightly-" + (new Date()).toISOString().split("-").splice(0, 2).join("-"), | |
base: "develop", | |
body: "PR auto-generated by a GitHub workflow." | |
}); | |
github.rest.issues.addLabels({ | |
owner, | |
repo, | |
issue_number: result.data.number, | |
labels: ["improvement"] | |
}); |