From 73479c80e769125a003f0ca10e993959db982878 Mon Sep 17 00:00:00 2001 From: dong151 <86703506+dong151@users.noreply.github.com> Date: Wed, 27 Oct 2021 22:53:28 +0800 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b139f8df7..bdfd5977f 100644 --- a/README.md +++ b/README.md @@ -194,3 +194,7 @@ mv git_pull_2.sh git_pull.sh chmod +x git_pull.sh ``` - 如有帮助到你,请点亮 star 。 + + + + From 80ac196a5ae7e8ec65fbc9c53adb2288a1c502ea Mon Sep 17 00:00:00 2001 From: dong151 <86703506+dong151@users.noreply.github.com> Date: Wed, 27 Oct 2021 22:58:36 +0800 Subject: [PATCH 2/3] Create 12main.yml --- .github/workflows/12main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/12main.yml diff --git a/.github/workflows/12main.yml b/.github/workflows/12main.yml new file mode 100644 index 000000000..30a4bc103 --- /dev/null +++ b/.github/workflows/12main.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From 1ae64287f590fd82f640cb9ede9966ba608db8b1 Mon Sep 17 00:00:00 2001 From: dong151 <86703506+dong151@users.noreply.github.com> Date: Thu, 28 Oct 2021 23:07:46 +0800 Subject: [PATCH 3/3] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index bdfd5977f..f732b3b0d 100644 --- a/README.md +++ b/README.md @@ -198,3 +198,17 @@ chmod +x git_pull.sh + + + + + + + + + + + + + +