Skip to content

Commit

Permalink
Create auto-pr-for-count-files.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-ho authored Apr 24, 2024
1 parent 9f93c0b commit 63dab5f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/auto-pr-for-count-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Auto PR to main

on:
push:
branches:
- "bot/count-files"

jobs:
build-and-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Pull Request
uses: repo-sync/pull-request@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_branch: "main"
source_branch: "bot/count-files"
pr_title: "Automated PR to Main"
pr_body: "Please review updates from bot/count-files."
# steps:
# - uses: actions/checkout@v2
# - name: Create Pull Request
# uses: repo-sync/pull-request@v2
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# destination_branch: "main"
# source_branch: "bot/count-files"
# pr_title: "Automated PR to Main"
# pr_body: "Update main branch with changes from develop."

0 comments on commit 63dab5f

Please sign in to comment.