-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add docs for changeset check workflow
- Loading branch information
1 parent
5340598
commit b5c2a3d
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,24 @@ jobs: | |
</details> | ||
### Changeset Check | ||
<details> | ||
<summary>The action can be used to check a PR for the existance of <a href="https://github.com/changesets/changesets">changeset</a> files. It will then add/update a comment on the PR.</summary> | ||
```yml | ||
name: Changeset Check | ||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
changeset-check: | ||
uses: Staffbase/gha-workflows/.github/workflows/[email protected] | ||
``` | ||
</details> | ||
### GitOps | ||
<details> | ||
|