Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ludy87/action
Actions yaml
https://github.com/ludy87/action
Last synced: 20 days ago
JSON representation
Actions yaml
- Host: GitHub
- URL: https://github.com/ludy87/action
- Owner: Ludy87
- License: mit
- Created: 2023-07-14T18:07:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-30T17:23:04.000Z (about 1 month ago)
- Last Synced: 2024-10-04T22:10:13.150Z (about 1 month ago)
- Language: TypeScript
- Size: 4.25 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# action
Actions yaml
## Merge
```yml
name: Set Labels on Pull Request
on:
pull_request:
types:
- closed
- reopenedjobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check if Pull Request
id: check_pr
run: echo "is_pull_request=${{ github.event_name == 'pull_request' }}" >> $GITHUB_ENV
- if: env.is_pull_request == 'true'
name: Merge Label
uses: Ludy87/action/[email protected]```
## update HACS.json
```yaml
name: Daily Updateon:
schedule:
- cron: "0 0 * * *"jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Update hacs.json
uses: Ludy87/action/[email protected]```