Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meilcli/carthage-update-check-action
Carthage new package version check action for GitHub Actions.
https://github.com/meilcli/carthage-update-check-action
actions carthage github-actions
Last synced: 3 months ago
JSON representation
Carthage new package version check action for GitHub Actions.
- Host: GitHub
- URL: https://github.com/meilcli/carthage-update-check-action
- Owner: MeilCli
- License: mit
- Archived: true
- Created: 2019-10-02T02:07:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T04:15:04.000Z (10 months ago)
- Last Synced: 2024-10-01T06:43:24.686Z (3 months ago)
- Topics: actions, carthage, github-actions
- Language: TypeScript
- Homepage: https://github.com/MeilCli/actions
- Size: 2.74 MB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# carthage-update-check-action
[![CI-Master](https://github.com/MeilCli/carthage-update-check-action/actions/workflows/ci-master.yml/badge.svg)](https://github.com/MeilCli/carthage-update-check-action/actions/workflows/ci-master.yml)
Carthage new package version check action for GitHub Actions.## Required
This action must execute on macOS.## Example
Slack notification example, using [8398a7/action-slack](https://github.com/8398a7/action-slack):```yaml
name: Check Packageon:
schedule:
- cron: '0 8 * * 5' # every friday AM 8:00
jobs:
carthage:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- uses: MeilCli/carthage-update-check-action@v3
id: outdated
- uses: 8398a7/action-slack@v2
if: steps.outdated.outputs.has_carthage_update != 'false'
with:
status: ${{ job.status }}
text: ${{ steps.outdated.outputs.carthage_update_text }}
author_name: GitHub Actions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
```
You can also pin to a [specific release](https://github.com/MeilCli/carthage-update-check-action/releases) version in the format `@v3.x.x`## input
- `execute_directories`
- optional
- execute directories of npm outdated command
- if multiple directories, write multiline## output
- `has_carthage_update`
- has new package version information
- value: `true` or `false`
- `carthage_update_text`
- new package version information text
- `carthage_update_json`
- new package version information json## Contributes
[](https://github.com/MeilCli/carthage-update-check-action/graphs/contributors)### Could you want to contribute?
see [Contributing.md](./.github/CONTRIBUTING.md)## License
[](LICENSE)