Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/generate-rfc-frontmatter-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ jobs:
run: |
node rfcs-tooling/scripts/list-frontmatter.mjs text/*.md > rfc-data.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: rfc-data
path: rfc-data.json
if-no-files-found: error
overwrite: true
3 changes: 2 additions & 1 deletion .github/workflows/open-advancement-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ jobs:
echo '{ "file": "${{ inputs.rfc-path }}", "number": "${{ inputs.rfc-number }}", "pr": "${{ steps.create-pr.outputs.pull-request-url }}", "advancementStage": "${{ inputs.new-stage }}" }' > advance-rfc-${{ inputs.rfc-number }}.json

- name: Upload artifact of open RFC PRs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: advancement-prs
path: advance-rfc-${{ inputs.rfc-number }}.json
overwrite: true
if-no-files-found: error