From b02b50b61461fe8bd4209bc7b8bb0e4d173d6249 Mon Sep 17 00:00:00 2001
From: notowen333 <51685858+notowen333@users.noreply.github.com>
Date: Thu, 6 Jul 2023 14:21:02 -0400
Subject: [PATCH 1/5] Delete .codecatalyst/workflows directory
---
.codecatalyst/workflows/Workflow_d6ff.yaml | 41 ----------------------
1 file changed, 41 deletions(-)
delete mode 100644 .codecatalyst/workflows/Workflow_d6ff.yaml
diff --git a/.codecatalyst/workflows/Workflow_d6ff.yaml b/.codecatalyst/workflows/Workflow_d6ff.yaml
deleted file mode 100644
index 2350fd1..0000000
--- a/.codecatalyst/workflows/Workflow_d6ff.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-Name: Workflow_d6ff
-SchemaVersion: "1.0"
-
-# Optional - Set automatic triggers.
-Triggers:
- - Type: PULLREQUEST
- Branches:
- - fork-main
- Events:
- - OPEN
- - REVISION
- - CLOSED
-
-# Required - Define action configurations.
-Actions:
- Build_ac:
- # Identifies the action. Do not modify this value.
- Identifier: aws/build-beta@v1.0.0
-
- # Specifies the source and/or artifacts to pass to the action as input.
- Inputs:
- # Optional
- Sources:
- - WorkflowSource # This specifies that the action requires this Workflow as a source
-
- Outputs:
- # Optional; Automatically discover reports for popular test frameworks
- AutoDiscoverReports:
- Enabled: true
- # Use as prefix for the report files
- ReportNamePrefix: rpt
-
- # Defines the action's properties.
- Configuration:
- # Required - Steps are sequential instructions that run shell commands
- Steps:
- - Run: echo "Hello, World!"
- - Run: echo "" >> report.xml
- - Run: echo "" >> report.xml
- - Run: echo "" >> report.xml
From eb05a26d98c3023498363b77c48b3ecc2ed51df1 Mon Sep 17 00:00:00 2001
From: notowen333 <51685858+notowen333@users.noreply.github.com>
Date: Thu, 6 Jul 2023 14:25:17 -0400
Subject: [PATCH 2/5] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 44dc5b6..4e50cbe 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Python-Chess
-Chess built out in python to be played in the terminal.
+Chess built out in python to be played in the terminal.
This Chess game uses long-form algebraic chess notation (So you say e2-e4, instead of e4, or you say Kb1xc3 to
say knight takes on c3).
From bb963f280a5a8fb7bbc5dbda2b3075df6eb54d65 Mon Sep 17 00:00:00 2001
From: notowen333 <51685858+notowen333@users.noreply.github.com>
Date: Thu, 6 Jul 2023 14:31:41 -0400
Subject: [PATCH 3/5] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 4e50cbe..6905041 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Before each move, all possible moves are generated and displayed. This includes
After a move is played, the game checks for stalemates where a player has no available moves and for repitition stalemates by hashing the board and checking if any hash points to a value of 3. Then the game auto-queens any pawns in the their respective final row.
-Of course, the game ends with checkmate when a player is in check and has no available moves.
+Of course, the game ends with checkmate when a player is in check and has no available moves.
Gameplay Images:
From 8c40d4de863b26fc106973d9d4e4f0791703b4ba Mon Sep 17 00:00:00 2001
From: notowen333 <51685858+notowen333@users.noreply.github.com>
Date: Wed, 23 Aug 2023 15:02:10 -0400
Subject: [PATCH 4/5] Create Workflow_731e.yaml
---
.codecatalyst/Workflow_731e.yaml | 45 ++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
create mode 100644 .codecatalyst/Workflow_731e.yaml
diff --git a/.codecatalyst/Workflow_731e.yaml b/.codecatalyst/Workflow_731e.yaml
new file mode 100644
index 0000000..ff59610
--- /dev/null
+++ b/.codecatalyst/Workflow_731e.yaml
@@ -0,0 +1,45 @@
+Name: Workflow_731e
+SchemaVersion: "1.0"
+
+# Optional - Set automatic triggers.
+Triggers:
+ - Type: Push
+ Branches:
+ - main
+ - Type: PULLREQUEST
+ Branches:
+ - bugbash*
+ Events:
+ - OPEN
+
+# Required - Define action configurations.
+Actions:
+ Build_3d:
+ # Identifies the action. Do not modify this value.
+ Identifier: aws/build@v1.0.0
+
+ # Specifies the source and/or artifacts to pass to the action as input.
+ Inputs:
+ # Optional
+ Sources:
+ - WorkflowSource # This specifies that the action requires this Workflow as a source
+
+ Outputs:
+ # Optional; Automatically discover reports for popular test frameworks
+ AutoDiscoverReports:
+ Enabled: true
+ # Use as prefix for the report files
+ ReportNamePrefix: rpt
+
+ # Defines the action's properties.
+ Configuration:
+ # Required - Steps are sequential instructions that run shell commands
+ Steps:
+ - Run: echo "Hello, World!"
+ - Run: echo "" >> report.xml
+ - Run: echo "" >> report.xml
+ - Run: echo "" >> report.xml
+ - Run: git clone https://github.com/notowen333/Python-Chess.git .
+ - Run: cd Python-Chess
+ - Run: echo pwd
From 5a45d9b0d62adf8acd25dc9fc1da6ba1e2cdca23 Mon Sep 17 00:00:00 2001
From: notowen333 <51685858+notowen333@users.noreply.github.com>
Date: Wed, 23 Aug 2023 15:03:51 -0400
Subject: [PATCH 5/5] Create Workflow_731e.yaml
---
.codecatalyst/workflows/Workflow_731e.yaml | 45 ++++++++++++++++++++++
1 file changed, 45 insertions(+)
create mode 100644 .codecatalyst/workflows/Workflow_731e.yaml
diff --git a/.codecatalyst/workflows/Workflow_731e.yaml b/.codecatalyst/workflows/Workflow_731e.yaml
new file mode 100644
index 0000000..ff59610
--- /dev/null
+++ b/.codecatalyst/workflows/Workflow_731e.yaml
@@ -0,0 +1,45 @@
+Name: Workflow_731e
+SchemaVersion: "1.0"
+
+# Optional - Set automatic triggers.
+Triggers:
+ - Type: Push
+ Branches:
+ - main
+ - Type: PULLREQUEST
+ Branches:
+ - bugbash*
+ Events:
+ - OPEN
+
+# Required - Define action configurations.
+Actions:
+ Build_3d:
+ # Identifies the action. Do not modify this value.
+ Identifier: aws/build@v1.0.0
+
+ # Specifies the source and/or artifacts to pass to the action as input.
+ Inputs:
+ # Optional
+ Sources:
+ - WorkflowSource # This specifies that the action requires this Workflow as a source
+
+ Outputs:
+ # Optional; Automatically discover reports for popular test frameworks
+ AutoDiscoverReports:
+ Enabled: true
+ # Use as prefix for the report files
+ ReportNamePrefix: rpt
+
+ # Defines the action's properties.
+ Configuration:
+ # Required - Steps are sequential instructions that run shell commands
+ Steps:
+ - Run: echo "Hello, World!"
+ - Run: echo "" >> report.xml
+ - Run: echo "" >> report.xml
+ - Run: echo "" >> report.xml
+ - Run: git clone https://github.com/notowen333/Python-Chess.git .
+ - Run: cd Python-Chess
+ - Run: echo pwd