mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
name: Fetch Merged Changes
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
fromCommit:
|
|
description: "From Commit SHA (full-length)"
|
|
required: true
|
|
toCommit:
|
|
description: "To Commit SHA (full-length, if omitted will use latest)"
|
|
|
|
jobs:
|
|
fetchChangelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node v16.13.1
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.13.1
|
|
cache: "npm"
|
|
- name: Install NPM dependencies
|
|
working-directory: ./tools/fetch-changelog
|
|
run: npm ci
|
|
- name: Fetch Changes from GitHub API
|
|
working-directory: ./tools/fetch-changelog
|
|
env:
|
|
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
node index.js \
|
|
--from=${{ github.event.inputs.fromCommit }} \
|
|
--to=${{ github.event.inputs.toCommit }} > changes.md
|
|
echo
|
|
echo "============================================================"
|
|
echo
|
|
cat changes.md
|
|
echo
|
|
echo "============================================================"
|
|
echo
|
|
echo "You may want to go to https://gist.github.com/ to upload the final changelog"
|
|
echo "The next step will require an url because we can't easily pass multiline strings to actions"
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: bitburner_changelog___DRAFT.md
|
|
path: ./tools/fetch-changelog/changes.md
|