<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:48:48 JST 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>PFS-JIRA</title>
    <link>https://pfspipe.ipmu.jp/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.3.4</version>
        <build-number>803005</build-number>
        <build-date>13-09-2019</build-date>
    </build-info>


<item>
            <title>[PIPE2D-134] Enable Travis on push to master only</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-134</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;I currently have Travis set up to build only pull requests.  This leaves the little build status indicator on Travis as &quot;unknown&quot;.  I would like to have Travis fire on pull requests and pushes to master, like &lt;a href=&quot;http://stackoverflow.com/questions/31882306/how-to-configure-travis-ci-to-build-pull-requests-merges-to-master-w-o-redunda&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;this&lt;/a&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11356">PIPE2D-134</key>
            <summary>Enable Travis on push to master only</summary>
                <type id="10001" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10515&amp;avatarType=issuetype">Story</type>
                                            <priority id="3" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/major.svg">Major</priority>
                        <status id="10002" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="The issue is resolved, reviewed, and merged">Done</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="price">price</assignee>
                                    <reporter username="price">price</reporter>
                        <labels>
                    </labels>
                <created>Thu, 1 Dec 2016 03:26:30 +0000</created>
                <updated>Thu, 1 Dec 2016 15:00:34 +0000</updated>
                            <resolved>Thu, 1 Dec 2016 15:00:34 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                <comments>
                            <comment id="11648" author="price" created="Thu, 1 Dec 2016 03:35:28 +0000"  >&lt;p&gt;&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/secure/ViewProfile.jspa?name=swinbank&quot; class=&quot;user-hover&quot; rel=&quot;swinbank&quot;&gt;swinbank&lt;/a&gt;, would you please have a look at this minor fix to Travis:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
price@price-laptop:~/PFS/pfs_pipe2d (tickets/PIPE2D-134=) $ git sub-patch
commit 36b420585fe63b91dd8546b3b277b8d77b602416
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Nov 30 22:27:43 2016 -0500

    Travis: build on pushes to master branch
    
    Currently, we&apos;re building only pull requests.
    This also requires activating push builds on Travis.

diff --git a/.travis.yml b/.travis.yml
index 5d1eca5..6b742c9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,9 @@ matrix:
   fast_finish: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
 notifications:
   email: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
+branches:
+  only:
+    - master
 
 # The actual installation is done under the &lt;span class=&quot;code-quote&quot;&gt;&apos;script&apos;&lt;/span&gt; so as to consolidate the
 # necessary front-end machinery (intercept log, decide which branch to use).
diff --git a/travis.yml.TEMPLATE b/travis.yml.TEMPLATE
index 657e0e0..5a207dc 100644
--- a/travis.yml.TEMPLATE
+++ b/travis.yml.TEMPLATE
@@ -12,6 +12,9 @@ matrix:
   fast_finish: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
 notifications:
   email: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
+branches:
+  only:
+    - master
 
 # The actual installation is done under the &lt;span class=&quot;code-quote&quot;&gt;&apos;script&apos;&lt;/span&gt; so as to consolidate the
 # necessary front-end machinery (intercept log, decide which branch to use).
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;(The other packages have equivalent changes.)&lt;/p&gt;</comment>
                            <comment id="11649" author="price" created="Thu, 1 Dec 2016 03:37:08 +0000"  >&lt;p&gt;(I still need to enable push builds in Travis.  Saving that until after this lands on master so we don&apos;t generate more builds than necessary.)&lt;/p&gt;</comment>
                            <comment id="11652" author="swinbank" created="Thu, 1 Dec 2016 13:17:57 +0000"  >&lt;p&gt;Looks fine. &lt;img class=&quot;emoticon&quot; src=&quot;https://pfspipe.ipmu.jp/jira/images/icons/emoticons/thumbs_up.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="11654" author="price" created="Thu, 1 Dec 2016 15:00:34 +0000"  >&lt;p&gt;Thanks John.&lt;/p&gt;

&lt;p&gt;Enabled push builds in Travis, merged to master and now everything&apos;s building.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|ii0147:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10100" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Reviewers</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>swinbank</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>