<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Enrique Benitez 🤙</title>
    <description>The latest articles on DEV Community by Enrique Benitez 🤙 (@bntzio).</description>
    <link>https://dev.to/bntzio</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F177849%2F1822ef7f-ad57-4a2f-8a82-94d7e31d5994.jpg</url>
      <title>DEV Community: Enrique Benitez 🤙</title>
      <link>https://dev.to/bntzio</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bntzio"/>
    <language>en</language>
    <item>
      <title>Warm Welcome Action 🤗</title>
      <dc:creator>Enrique Benitez 🤙</dc:creator>
      <pubDate>Fri, 18 Sep 2020 05:38:18 +0000</pubDate>
      <link>https://dev.to/bntzio/warm-welcome-action-334j</link>
      <guid>https://dev.to/bntzio/warm-welcome-action-334j</guid>
      <description>&lt;h3&gt;
  
  
  My Workflow
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;warm-welcome-action&lt;/code&gt; is a very simple GitHub Action I made to learn the basics of how actions work ⚙️ and for the &lt;a href="https://dev.to/devteam/announcing-the-github-actions-hackathon-on-dev-3ljn"&gt;dev.to actions hackathon&lt;/a&gt; 🎉&lt;/p&gt;

&lt;p&gt;What this action does is every time a user submits a new pull request on a repository with this action installed, it will post a warm welcome gif to make the person who made the PR well, welcome.&lt;/p&gt;

&lt;h3&gt;
  
  
  Submission Category:
&lt;/h3&gt;

&lt;p&gt;Wacky Wildcards&lt;/p&gt;

&lt;h3&gt;
  
  
  Yaml File or Link to Code
&lt;/h3&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vJ70wriM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/github-logo-ba8488d21cd8ee1fee097b8410db9deaa41d0ca30b004c0c63de0a479114156f.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/bntzio"&gt;
        bntzio
      &lt;/a&gt; / &lt;a href="https://github.com/bntzio/warm-welcome-action"&gt;
        warm-welcome-action
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      GitHub Action to give a warm welcome on PRs 💖
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;h1&gt;
warm welcome action 🤗
&lt;/h1&gt;
&lt;p&gt;GitHub Action to give a warm welcome on PRs 💖&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://camo.githubusercontent.com/8dd157790932cfe4db7f9d732b0ed8833c1ebfff/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f626e747a696f2f7761726d2d77656c636f6d652d616374696f6e3f7374796c653d666c61742d737175617265"&gt;&lt;img src="https://camo.githubusercontent.com/8dd157790932cfe4db7f9d732b0ed8833c1ebfff/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f626e747a696f2f7761726d2d77656c636f6d652d616374696f6e3f7374796c653d666c61742d737175617265" alt="GitHub release (latest by date)"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;
About&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;warm-welcome-action&lt;/code&gt; is a very simple GitHub Action I made to learn the basics of how actions work ⚙️ and for the &lt;a href="https://dev.to/devteam/announcing-the-github-actions-hackathon-on-dev-3ljn" rel="nofollow"&gt;dev.to actions hackathon&lt;/a&gt; 🎉&lt;/p&gt;
&lt;p&gt;What this action does is every time a user submits a new pull request on a repository with this action installed, it will post a warm welcome gif to make the person who made the PR well, welcome.&lt;/p&gt;
&lt;h3&gt;
How to use&lt;/h3&gt;
&lt;p&gt;Create a &lt;code&gt;.github/workflows/action.yml&lt;/code&gt; file in the repository you want to install this action, then add the following to it:&lt;/p&gt;
&lt;div class="highlight highlight-source-yaml"&gt;
&lt;pre&gt;&lt;span class="pl-ent"&gt;name&lt;/span&gt;: &lt;span class="pl-s"&gt;&lt;span class="pl-pds"&gt;"&lt;/span&gt;Warm Welcome&lt;span class="pl-pds"&gt;"&lt;/span&gt;&lt;/span&gt;
&lt;span class="pl-ent"&gt;on&lt;/span&gt;
  &lt;span class="pl-ent"&gt;pull_request&lt;/span&gt;
  &lt;span class="pl-ent"&gt;issues&lt;/span&gt;
    &lt;span class="pl-ent"&gt;types&lt;/span&gt;: &lt;span class="pl-s"&gt;[opened]&lt;/span&gt;
  &lt;span class="pl-ent"&gt;push&lt;/span&gt;
    &lt;span class="pl-ent"&gt;branches&lt;/span&gt;:
      - &lt;span class="pl-s"&gt;master&lt;/span&gt;
&lt;span class="pl-ent"&gt;jobs&lt;/span&gt;:
  &lt;span class="pl-ent"&gt;test&lt;/span&gt;:
    &lt;span class="pl-ent"&gt;if&lt;/span&gt;: &lt;span class="pl-s"&gt;github.event_name == 'pull_request'&lt;/span&gt;
    &lt;span class="pl-ent"&gt;runs-on&lt;/span&gt;: &lt;span class="pl-s"&gt;ubuntu-latest&lt;/span&gt;
    &lt;span class="pl-ent"&gt;steps&lt;/span&gt;:
    - &lt;span class="pl-ent"&gt;uses&lt;/span&gt;: &lt;span class="pl-s"&gt;actions/checkout@v2.0.0&lt;/span&gt;
    - &lt;span class="pl-ent"&gt;name&lt;/span&gt;: &lt;span class="pl-s"&gt;grab and post gif and message&lt;/span&gt;
      &lt;span class="pl-ent"&gt;id&lt;/span&gt;: &lt;/pre&gt;…&lt;/div&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/bntzio/warm-welcome-action"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h3&gt;
  
  
  Additional Resources / Info
&lt;/h3&gt;

&lt;p&gt;This super simple action is my first GitHub Action published! 💖 I hope you all find it useful! 😄&lt;/p&gt;

&lt;p&gt;PR's are welcome 😉&lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/FQyQEYd0KlYQ/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/FQyQEYd0KlYQ/giphy.gif" alt="welcome_gif"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>actionshackathon</category>
      <category>github</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
