-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto-push.yml
34 lines (28 loc) · 1.15 KB
/
auto-push.yml
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
name: Auto Push Changes
on:
push:
branches:
- main # نام شاخهای که میخواهید این کار را در آن انجام دهید
jobs:
push-changes:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # یا نسخهای که پروژه شما استفاده میکند
- name: Install dependencies
run: npm install # یا دستور مربوط به نصب وابستگیهای پروژه شما
- name: Run build
run: npm run build # اگر نیاز به ساخت دارید، این خط را تنظیم کنید
- name: Push changes
run: |
git config --global user.name 'Rick Sanchez'
git config --global user.email '[email protected]'
git add .
git commit -m "Auto commit from GitHub Actions"
git push origin main # نام شاخهای که میخواهید به آن پوش کنید
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}