From 89c967aa50f1c51725365b2923fa3f58954679b8 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:42:36 +0000 Subject: [PATCH 1/7] Create READ.me --- READ.me | 1 + 1 file changed, 1 insertion(+) create mode 100644 READ.me diff --git a/READ.me b/READ.me new file mode 100644 index 0000000..c9fad29 --- /dev/null +++ b/READ.me @@ -0,0 +1 @@ +read me file From a256cb0bba9f8b6fcfa62c947e16049b05fbc0d6 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:43:06 +0000 Subject: [PATCH 2/7] Delete READ.me MA --- READ.me | 1 - 1 file changed, 1 deletion(-) delete mode 100644 READ.me diff --git a/READ.me b/READ.me deleted file mode 100644 index c9fad29..0000000 --- a/READ.me +++ /dev/null @@ -1 +0,0 @@ -read me file From 4b03ffc7bbcb972e3ec4592c29b46c47def3aead Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:46:24 +0000 Subject: [PATCH 3/7] Create file 1 MA file 1 --- file 1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 file 1 diff --git a/file 1 b/file 1 new file mode 100644 index 0000000..4847143 --- /dev/null +++ b/file 1 @@ -0,0 +1 @@ +MA - hello this is good From 4e2afe34216ca7029042b9d077196c6b4a766dd9 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:47:07 +0000 Subject: [PATCH 4/7] Create file 2 me - file 2 --- file 2 | 1 + 1 file changed, 1 insertion(+) create mode 100644 file 2 diff --git a/file 2 b/file 2 new file mode 100644 index 0000000..ba41b1e --- /dev/null +++ b/file 2 @@ -0,0 +1 @@ +MA - this is file 2 From 3461dc07e57f8a71871b709ca5f421ef07f23d36 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:47:27 +0000 Subject: [PATCH 5/7] Create file 3 ma - file 3 --- file 3 | 1 + 1 file changed, 1 insertion(+) create mode 100644 file 3 diff --git a/file 3 b/file 3 new file mode 100644 index 0000000..f4f7729 --- /dev/null +++ b/file 3 @@ -0,0 +1 @@ +MA - this is file 3 From 97faf570e24038b74bffd79725bbe866317052b6 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:56:22 +0000 Subject: [PATCH 6/7] Create yes ma --- yes | 1 + 1 file changed, 1 insertion(+) create mode 100644 yes diff --git a/yes b/yes new file mode 100644 index 0000000..5ee405e --- /dev/null +++ b/yes @@ -0,0 +1 @@ +there is a chnage From 05e0635edd479ac9fdd1192c23964de101615349 Mon Sep 17 00:00:00 2001 From: mikeatkoo01 <150167449+mikeatkoo01@users.noreply.github.com> Date: Thu, 9 Nov 2023 16:06:17 +0000 Subject: [PATCH 7/7] Create blank.yml create a auto file --- .github/workflows/blank.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..69cbc36 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,35 @@ +# This is a basic workflow to help you get started with Actions + +name: mikeatkinsonworkflow + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + + 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@v3 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo this is mikes test + + # Runs a set of commands using the runners shell + - name: list files + run: ls + echo Add other actions to build, + echo test, and deploy your project.