Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuachp/github-actions
Repository of github actions
https://github.com/joshuachp/github-actions
Last synced: about 8 hours ago
JSON representation
Repository of github actions
- Host: GitHub
- URL: https://github.com/joshuachp/github-actions
- Owner: joshuachp
- Created: 2023-03-11T13:08:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-17T18:30:24.000Z (5 months ago)
- Last Synced: 2024-06-18T15:16:29.025Z (5 months ago)
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Actions
This repository contains a collection of Github Actions that can be used in
your workflows.Its separated in branches, each branch contains a different project type: rust,
...## Usage
To use this you can add this repository as a remote to your project:
```bash
git remote add actions [email protected]:joshuachp/github-actions.git
```Then you can fetch the branch you want to use and merge it into your project
with the `--allow-unrelated-histories` flag:```bash
git fetch actions
git merge --allow-unrelated-histories actions/rust
```When you want to update the actions you can just fetch the branch again and
merge it:```bash
git fetch actions
git merge actions/rust
```## Credits
This project was started from
[jonhoo/rust-ci-conf](https://github.com/jonhoo/rust-ci-conf)