diff --git a/.github/workflows/firstaction.yml b/.github/workflows/firstaction.yml index 08d3146..c2e8c66 100644 --- a/.github/workflows/firstaction.yml +++ b/.github/workflows/firstaction.yml @@ -15,7 +15,8 @@ on: workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel -env: name = 'Shyamala' +env: + name: 'Shyamala' jobs: build: # The type of runner that the job will run on @@ -33,6 +34,7 @@ jobs: pull_request_only: # The type of runner that the job will run on runs-on: ubuntu-latest + if: github.event_actions == 'pull_request' needs: build # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/tictactoe.py b/tictactoe.py index 8a2df96..b6a1327 100644 --- a/tictactoe.py +++ b/tictactoe.py @@ -4,7 +4,7 @@ elif (p1key == 'O'): p2key = 'X' else: - print 'Invalid Input! Please enter X or O, Player1\n' + print 'Invalid Input! Please enter X or O, Player1!!!!!!\n' #dic = { '1' : 'one', '2': 'two', '3' : 'three', '4' : 'four', '5' : 'five', '6' : 'six', '7' : 'seven', '8' : 'eight', '9' : 'nine' }