From f098c958210e18ac3581405ad8b013b10d70918f Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 18 Oct 2024 13:48:01 -0600 Subject: [PATCH 1/2] Update readme with CLA usage --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index d1f3daa..b0cc46d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ Expensify has multiple repositories that use the same GitHub Actions workflows. ### `npmPublish.yml` +Used to publish a package to [npmjs](https://www.npmjs.com/), should be triggered when code is merged into the `main` branch. + ```yml jobs: publish: @@ -22,3 +24,13 @@ jobs: # Optional, Boolean, default: false should_run_build: true ``` + +### `cla.yml` + +Used to check if a user has signed the [Contributor License Agreement](./CLA.md), Should be triggered when a PR is opened or updated. + +```yml +jobs: + cla: + uses: Expensify/GitHub-Actions/.github/workflows/cla.yml@main +``` From 18e4fde17bac4ca6aacee6589b4402c96024a3ab Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 18 Oct 2024 13:50:50 -0600 Subject: [PATCH 2/2] Update job name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0cc46d..eb84bd5 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,6 @@ Used to check if a user has signed the [Contributor License Agreement](./CLA.md) ```yml jobs: - cla: + CLA: uses: Expensify/GitHub-Actions/.github/workflows/cla.yml@main ```