Skip to content

Fix GitHub Actions workflow triggering and remove duplicate config#1

Merged
emrekayik merged 3 commits intomainfrom
copilot/fix-github-actions-issue
Feb 11, 2026
Merged

Fix GitHub Actions workflow triggering and remove duplicate config#1
emrekayik merged 3 commits intomainfrom
copilot/fix-github-actions-issue

Conversation

Copy link
Contributor

Copilot AI commented Feb 11, 2026

GitHub Actions workflow was not triggering because it only ran on tag pushes, but no tags existed in the repository.

Changes

  • Removed duplicate workflow: Deleted .github/workflows/wails.yml (identical to main.yml)
  • Expanded triggers: Added push to main and pull requests while preserving tag-based releases
  • Updated deprecated action: actions/checkout@v2v4
  • Fixed YAML formatting: Corrected indentation and spacing per linter

Workflow triggers now

on:
  push:
    branches:
      - main
    tags:
      - '*'
  pull_request:
    branches:
      - main

Workflow now executes on regular development activity instead of never running.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits February 11, 2026 00:44
Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com>
Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix issue with GitHub Actions not working Fix GitHub Actions workflow triggering and remove duplicate config Feb 11, 2026
Copilot AI requested a review from emrekayik February 11, 2026 00:47
@emrekayik
Copy link
Member

that's look good

@emrekayik emrekayik marked this pull request as ready for review February 11, 2026 00:47
@emrekayik emrekayik merged commit fd2da8c into main Feb 11, 2026
0 of 3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants