https://github.com/grmvoid/notify-php-release-action
A GitHub Action to automatically create an issue when a new version of PHP is released.
https://github.com/grmvoid/notify-php-release-action
github-actions php-release
Last synced: 2 months ago
JSON representation
A GitHub Action to automatically create an issue when a new version of PHP is released.
- Host: GitHub
- URL: https://github.com/grmvoid/notify-php-release-action
- Owner: grmvoid
- License: mit
- Created: 2024-06-28T20:01:43.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-01-01T08:53:26.000Z (5 months ago)
- Last Synced: 2025-02-01T14:35:22.136Z (4 months ago)
- Topics: github-actions, php-release
- Language: TypeScript
- Homepage:
- Size: 462 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notify PHP Release Action
A GitHub Action to automatically create an issue when a new version of PHP is released.
## Inputs
| Name | Description | Required | Default value |
|------------|----------------------------------------------------------------------------------------|----------|---------------------|
| localfile | The local file containing the current PHP release. | false | .releases |
| repo-token | Token for interacting with the GitHub API. | true | ${{ github.token }} |
| owner | The account owner of the repository. The name is not case-sensitive. | true | |
| repo | The name of the repository without the .git extension. The name is not case-sensitive. | true | |## Example usage
```yaml
on: [push]permissions:
issues: writejobs:
notify_new_releases:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check for new PHP releases
uses: sxbrsky/notify-php-release-action@v1
with:
repo-token: ${{ github.token }}
repo: notify-php-release-action
owner: sxbrsky
localfile: .releases```
## License
This project is licensed under the [MIT License](LICENSE).