diff --git a/.github/workflows/mtg-fetch-cards.yml b/.github/workflows/mtg-fetch-cards.yml
new file mode 100644
index 0000000000..d6162b5784
--- /dev/null
+++ b/.github/workflows/mtg-fetch-cards.yml
@@ -0,0 +1,20 @@
+name: Mtg Card Fetch Bot
+
+on:
+  issue_comment:
+    types: [created]
+  issues:
+    types: [opened]
+  pull_request:
+    types: [opened]
+  pull_request_review:
+    type: [submitted]
+
+jobs:
+  fetch-card-references:
+    name: Fetch MTG Card
+    runs-on: ubuntu-latest
+    steps:
+      - uses: ldeluigi/mtg-fetch-action@v1
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}