Skip to content

Commit

Permalink
Create commit test2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerem671 authored Jan 10, 2025
1 parent 7efbf13 commit 1d25188
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/commit test2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create 600 commits

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Make 600 commits
run: |
for i in {1..600}
do
echo "Modification $i" >> file-ach3.txt
git add file-ach3.txt
git commit -m "Commit numéro $i"
done
- name: Push changes
run: |
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1d25188

Please sign in to comment.