From e4885fd68491e3ab22d70d970723ee4072f4ffce Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Mon, 23 Jan 2023 22:49:47 -0800 Subject: [PATCH 1/3] Updated the messages in our News Section --- News/Overview.yaml | 36 +++++++++++++++--------------------- profile/README.md | 10 +++++----- 2 files changed, 20 insertions(+), 26 deletions(-) diff --git a/News/Overview.yaml b/News/Overview.yaml index 1379a50..a5ed4cb 100644 --- a/News/Overview.yaml +++ b/News/Overview.yaml @@ -1,11 +1,11 @@ -# +# # News Articles # ============= -# +# # Structure: # ---------- -# +# # - title : # # lines : | @@ -17,37 +17,31 @@ # # Warning: # -------- -# +# # Lines shouldn't be longer than 40 characters. # #######|<-------------------------------------->| Stop Here # -- title : πŸ—ƒ [Backend Feature] +- title : πŸŽ‰ Pulsar Updates lines : | - Allow package authors to transfer - their ownership to another user. - + Pulsar v1.101.0-beta is out now! + links : - Backend Feature : https://github.com/orgs/pulsar-edit/projects/2?pane=issue&itemId=17528685 + Backend Feature : https://github.com/pulsar-edit/pulsar/releases/tag/v1.101.0-beta -- title : πŸ”¬ Testing2 +- title : [Socials] lines : | - This is a test message! - - -- title : πŸ”¬ Testing + Join Us on Discord! + + links: + Socials: https://discord.gg/7aEbB9dGRT - lines : | - This is a test message! - -- title : πŸŽ… Merry Christmas +- title : πŸŽ… Merry Christmas! Happy New/Lunar Year! lines : | - from all of us here at Pulsar edit! - We wish everyone a great new year! - + From all of us here at Pulsar, Happy Holidays! diff --git a/profile/README.md b/profile/README.md index 62bf0ca..6a011ba 100644 --- a/profile/README.md +++ b/profile/README.md @@ -12,7 +12,7 @@ Pulsar aims to not only reach feature parity with the original Atom, but to brin With many new features on the roadmap, once Pulsar is stable, it will be a true, Community-Based, Hackable, Text Editor. -For where to contribute or where our progess is right now there are these as starting points that we recommend: +For where to contribute or where our progress is right now there are these as starting points that we recommend: * [Frequently Asked Questions](https://github.com/pulsar-edit/.github/blob/main/FAQ.md) * [Contributing Right Now](https://github.com/pulsar-edit/.github/blob/main/project-birth/CONTRIBUTING-DURING-START.md) @@ -37,13 +37,13 @@ For other support feel free to join us here: <!---------------------------------- πŸ—ž News ----------------------------------> - + <pre align = center> - + <kbd align = left> <br>   <b>πŸ—ƒ <a href = 'https://github.com/orgs/pulsar-edit/projects/2?pane=issue&itemId=17528685'>Backend Feature</a></b><br>   <br>   Allow package authors to transfer<br>   their ownership to another user.<br>   <br>                                                                                </kbd>     <kbd align = left> <br>   <b>πŸ”¬ Testing2</b><br>   <br>   This is a test message!<br>   <br>                                                                                </kbd><br><br><kbd align = left> <br>   <b>πŸ”¬ Testing</b><br>   <br>   This is a test message!<br>   <br>                                                                                </kbd>     <kbd align = left> <br>   <b>πŸŽ… Merry Christmas</b><br>   <br>   from all of us here at Pulsar edit!<br>   We wish everyone a great new year!<br>   <br>                                                                                </kbd> - + </pre> - + <!---------------------------------- πŸ—ž News ----------------------------------> From 83adb358023563501af471396b763f934a2b8f95 Mon Sep 17 00:00:00 2001 From: confused-Techie <dev@lhbasics.com> Date: Mon, 23 Jan 2023 22:55:53 -0800 Subject: [PATCH 2/3] Fix Branch configuration for PRs --- .github/workflows/News.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/News.yml b/.github/workflows/News.yml index a571665..2782cef 100644 --- a/.github/workflows/News.yml +++ b/.github/workflows/News.yml @@ -6,23 +6,19 @@ on: workflow_dispatch: pull_request: - - branches : [ main ] - paths : - - 'News/**' push: branches : [ main ] - + paths : - + - 'News/**' - + concurrency: cancel-in-progress : true @@ -42,13 +38,13 @@ jobs : - name : Run News Builder uses : MarkedDown/News@1.0.0 with : - + config : .github/.News.yml - + - name : Commit Changes uses : EndBug/add-and-commit@v9 with : - + default_author : github_actor message : Updated News Section add : profile/README.md From 998e6e40357ceb7bb58853fbcf8a4593ee1e28da Mon Sep 17 00:00:00 2001 From: confused-Techie <dev@lhbasics.com> Date: Mon, 23 Jan 2023 23:02:33 -0800 Subject: [PATCH 3/3] Properly assign ref https://github.com/actions/checkout/issues/317 --- .github/workflows/News.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/News.yml b/.github/workflows/News.yml index 2782cef..ea77369 100644 --- a/.github/workflows/News.yml +++ b/.github/workflows/News.yml @@ -32,8 +32,10 @@ jobs : steps : - - name : Checkout - uses : actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.ref_name }} - name : Run News Builder uses : MarkedDown/News@1.0.0