mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
094632a0ef
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/8ade135a41bc03ea155e62e844d188df1ea18608...b4ffde65f46336ab88eb53be808477a3936bae11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... 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@0b7f8abb1508181956e8e162db84b466c27e18ce
|
|
with:
|
|
name: ${{ env.PULL_REQUEST_METADATA_FILE }}
|
|
path: ${{ env.PULL_REQUEST_METADATA_DIR }}
|
|
retention-days: 1
|