Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ludy87/action

Actions yaml
https://github.com/ludy87/action

Last synced: 20 days ago
JSON representation

Actions yaml

Awesome Lists containing this project

README

        

# action

Actions yaml

## Merge

```yml

name: Set Labels on Pull Request

on:
pull_request:
types:
- closed
- reopened

jobs:
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 Update

on:
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]

```