https://github.com/supertokens/supertokens-github-actions
https://github.com/supertokens/supertokens-github-actions
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/supertokens/supertokens-github-actions
- Owner: supertokens
- Created: 2023-09-15T10:54:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T08:45:36.000Z (about 2 years ago)
- Last Synced: 2025-01-15T05:41:56.090Z (11 months ago)
- Language: Shell
- Size: 12.9 MB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SuperTokens Github Actions
This repository contains various actions that SuperTokens uses in its own repositories
## Using actions
All actions get built into individual `.js` files in the `dist` directory. Corresponding `yml` files can be used directly in your actions.
For example to use the docs-versioning action use the following snippet:
```
- uses: supertokens/supertokens-github-actions/docs/versioning@master
```
Make sure to check the `action.yml` file to see if the action expects any input
## Contributing
1. Create your own action by adding an `action.yml` file and an `index.js` file using existing actions as a reference
2. Modify `buildAllActions` to build your action
3. Run `./buildAllActions`
4. Raise a pull request to `supertokens-github-actions`