https://github.com/keisukeyamashita/fastlane-plugin-github-actions
Fastlane plugin to trigger GitHub Actions workflow.
https://github.com/keisukeyamashita/fastlane-plugin-github-actions
fastlane github-actions ruby
Last synced: 3 months ago
JSON representation
Fastlane plugin to trigger GitHub Actions workflow.
- Host: GitHub
- URL: https://github.com/keisukeyamashita/fastlane-plugin-github-actions
- Owner: KeisukeYamashita
- License: mit
- Created: 2021-01-10T01:14:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-10T01:14:48.000Z (over 5 years ago)
- Last Synced: 2025-10-31T05:48:39.805Z (8 months ago)
- Topics: fastlane, github-actions, ruby
- Language: Ruby
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github_actions plugin
[](https://rubygems.org/gems/fastlane-plugin-github_actions)
## Getting Started
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-github_actions`, add it to your project by running:
```bash
fastlane add_plugin github_actions
```
## About github_actions
Plugin to trigger GitHub Actions workflow.
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
```ruby
github_actions(
access_token: "xxxxxxxxxxxxxxxxx",
id: "name_of_workflow",
repo: "KeisukeYamashita/fastlane-plugin-github-actions",
params: {
"tags": "v1.0.0"
}
)
```
## Example
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
## Run tests for this plugin
To run both the tests, and code style validation, run
```
rake
```
To automatically fix many of the styling issues, use
```
rubocop -a
```
## Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
## Troubleshooting
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
## Using _fastlane_ Plugins
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
## About _fastlane_
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).