Github - 如何在所有回购协议中查找组织中最近 X 天修改的所有文件?

Github - how to find all files modified in the last X days in an organization across all repos?

我在一家运行私有实例 Github 的公司工作,我们在一个组织中有数百个存储库。

我想获取最近 X 天内修改过的文件列表,无论它是在哪个存储库中修改的。

我该怎么做?

我从来没有找到一种方法来做到这一点,并且强烈怀疑它永远不会与第 3 方网站一起使用。

但是我确实意识到您可以缩放 iframe 的内容以适应 iframe,这对我很有效

这似乎是最好的 Whosebug

How can I scale the content of an iframe?

这是一个适用于 Chrome 和 Safari(现代)但不确定是否适用于 Firefox 或旧版浏览器的示例。它显示了一个嵌入 iframe 的网站,并缩放以适合 iframe 大小。

.wrap { width: 320px; height: 196px; padding: 0; overflow: hidden; float: left;}
.frame { width: 1280px; height: 786px; border: 1px solid black}

.frame {
    // zoom: 0.25;
    -moz-transform: scale(0.25);
    -moz-transform-origin: 0 0;
    -o-transform: scale(0.25);
    -o-transform-origin: 0 0;
    -webkit-transform: scale(0.25);
    -webkit-transform-origin: 0 0;
}
<p>before the iframe</p>
<div class="wrap">

<div class="wrap">
    <iframe class="frame" src="https://time.is">
    </iframe>
</div>