From ee243f9c58af88a139e64987de7da95ad2e2decc Mon Sep 17 00:00:00 2001 From: Lars Gyrup Brink Nielsen Date: Tue, 7 Dec 2021 22:26:26 +0100 Subject: [PATCH] refactor: move composite tweet article action to .github subfolder --- {actions => .github/actions}/tweet-article.yml | 0 workflows/this-is-angular-rss.yml | 2 +- workflows/this-is-learning-rss.yml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {actions => .github/actions}/tweet-article.yml (100%) diff --git a/actions/tweet-article.yml b/.github/actions/tweet-article.yml similarity index 100% rename from actions/tweet-article.yml rename to .github/actions/tweet-article.yml diff --git a/workflows/this-is-angular-rss.yml b/workflows/this-is-angular-rss.yml index 7015c3d..09eda3c 100644 --- a/workflows/this-is-angular-rss.yml +++ b/workflows/this-is-angular-rss.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Tweet about article - uses: ./actions/tweet-article + uses: ./.github/actions/tweet-article with: rss-author: ${{ on.rss.outputs.author }} rss-categories: ${{ on.rss.outputs.categories }} diff --git a/workflows/this-is-learning-rss.yml b/workflows/this-is-learning-rss.yml index 0bb2ba1..01264f3 100644 --- a/workflows/this-is-learning-rss.yml +++ b/workflows/this-is-learning-rss.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Tweet about article - uses: ./actions/tweet-article + uses: ./.github/actions/tweet-article with: rss-author: ${{ on.rss.outputs.author }} rss-categories: ${{ on.rss.outputs.categories }}