From d576d8d41a61cc63c51a2de615fc4daec59bcb6d Mon Sep 17 00:00:00 2001 From: Rafal Krysiak Date: Mon, 7 Jul 2025 17:49:28 +0200 Subject: [PATCH] Add support for pull request creation Supports reviewers, assignees and draft PRs. --- .github/workflows/call-platformos-check.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/call-platformos-check.yaml diff --git a/.github/workflows/call-platformos-check.yaml b/.github/workflows/call-platformos-check.yaml new file mode 100644 index 0000000..475324d --- /dev/null +++ b/.github/workflows/call-platformos-check.yaml @@ -0,0 +1,13 @@ +name: Run platformos-check on Liquid files +on: + push: + paths-ignore: + - '**/README.md' + pull_request: + paths-ignore: + - '**/README.md' + workflow_dispatch: + +jobs: + run-platformos-check: + uses: Platform-OS/gh-workflows/.github/workflows/run_platformos_check_reusable.yml@main