forked from clouddrove/github-shared-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.46 KB
/
Copy pathreadme.yml
File metadata and controls
58 lines (51 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
name: 📖 Readme workflow
on:
workflow_call:
secrets:
TOKEN:
required: true
description: 'GitHub Token.'
SLACK_WEBHOOK_TERRAFORM:
required: true
description: 'Slack webhook url.'
jobs:
readme-workflow:
runs-on: ubuntu-latest
steps:
- name: 📦 Checkout Repository
uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: 🐍 Set up Python 3.7
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: 📝 Create readme
uses: 'clouddrove/github-actions@v9.0.4'
with:
actions_subcommand: 'readme'
github_token: ${{ secrets.TOKEN }}
- name: ✅ Pre-commit check errors
uses: pre-commit/action@v3.0.1
continue-on-error: true
- name: 🛠️ Pre-commit fix errors
uses: pre-commit/action@v3.0.1
continue-on-error: true
- name: 🚀 Push readme
uses: 'clouddrove/github-actions@v9.0.4'
with:
actions_subcommand: 'push'
github_token: ${{ secrets.TOKEN }}
- name: 📣 Slack Notification
uses: clouddrove/action-slack@v2
with:
status: ${{ job.status }}
fields: repo,author
author_name: 'CloudDrove'
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TERRAFORM }}
if: always()
...