Create dependabot.yml #271
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update latest release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
filter_for_configs: | |
name: Filter for configs folder changes | |
runs-on: ubuntu-latest | |
outputs: | |
configs: ${{ steps.filter.outputs.configs }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set filter | |
uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
configs: | |
- 'configs/**' | |
update_latest: | |
name: Update latest release | |
needs: filter_for_configs | |
if: ${{ needs.filter_for_configs.outputs.configs == 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Build manifest | |
uses: jannekem/run-python-script-action@v1 | |
with: | |
script: | | |
import os, json | |
configs = [] | |
entries = os.scandir('configs') | |
sorted_entries = sorted(entries, key=lambda x: x.name) | |
for filename in sorted_entries: | |
with open(filename, mode='r', encoding='utf-8') as file: | |
configs.append(json.load(file)) | |
with open("manifest.json", mode='w', encoding='utf-8') as f: | |
f.truncate(0) | |
json.dump(configs, f) | |
- name: Update latest release | |
uses: meeDamian/github-release@2.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: latest | |
tag: latest | |
allow_override: true | |
prerelease: true | |
files: manifest.json | |
gzip: false |