mirror of
https://github.com/systemd/systemd.git
synced 2025-01-23 02:04:32 +03:00
94ce8e248e
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 4.0.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](0b7f8abb15...c7d193f32e
)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
38 lines
971 B
YAML
38 lines
971 B
YAML
---
|
|
|
|
name: Gather Pull Request Metadata
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
PULL_REQUEST_METADATA_DIR: pull_request
|
|
PULL_REQUEST_METADATA_FILE: metadata
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
gather-metadata:
|
|
if: github.repository == 'systemd/systemd'
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Repository checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Store PR number in file
|
|
run: |
|
|
mkdir -p ./${{ env.PULL_REQUEST_METADATA_DIR }}
|
|
echo ${{ github.event.number }} >./${{ env.PULL_REQUEST_METADATA_DIR }}/${{ env.PULL_REQUEST_METADATA_FILE }}
|
|
|
|
- name: Upload Pull Request Metadata artifact
|
|
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392
|
|
with:
|
|
name: ${{ env.PULL_REQUEST_METADATA_FILE }}
|
|
path: ${{ env.PULL_REQUEST_METADATA_DIR }}
|
|
retention-days: 1
|